How can I change a column's name?

Can I use the
ALTER TABLE TableName RENAME COLUMN FieldName TO FieldName1 ?
or other method can work fine.

thanks...

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:

rename table.old_colname to new_colname

You can check the online documentation here:

IDS 11.5: RENAME COLUMN

HTH.