How can I change a column's name?
Submitted by huangke2006 on Sun, 2008-11-09 10:43
Can I use the
ALTER TABLE TableName RENAME COLUMN FieldName TO FieldName1 ?
or other method can work fine.
thanks...
- Login or register to post comments
- 4646 reads
-
- Email this page
- Printer-friendly version
- Send to friend
- PDF version


















This command changes the name
This command changes the name of a column.
RENAME COLUMN table_name.old_column_name TO new_column_name
eg. rename column cust.cust_no to cust_number;
--------------------
database management
rename column
The syntax is:
You can check the online documentation here:
IDS 11.5: RENAME COLUMN
HTH.