sybaseIQ重命名列名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sybaseIQ重命名列名相关的知识,希望对你有一定的参考价值。
Warning! You must change appropriately the definition of any dependent object (procedures, functions, and views) on an object being renamed by sp_iqrename. The sp_iqrename procedure does not automatically update the definitions of dependent objects. You must change these definitions manually.
Description
The sp_iqrename stored procedure renames user-created tables, columns, indexes, constraints (unique, primary key, foreign key, and check), and functions.
If you attempt to rename an object with a name that is not unique for that type of object, sp_iqrename returns the message “Item already exists.”
sp_iqrename does not support renaming a view, a procedure, an event or a data type. The message “Feature not supported.” is returned by sp_iqrename, if you specify event or datatype as the object-type parameter.
You can also rename using the RENAME clause of the ALTER TABLE statement and ALTER INDEX statement.
sp_iqrename ‘a.unknown_2‘,‘code‘,column
以上是关于sybaseIQ重命名列名的主要内容,如果未能解决你的问题,请参考以下文章
R语言rename重命名dataframe的列名实战:rename重命名dataframe的列名(写错的列名不会被重命名)