You can change the name of the column by using the RENAME COLUMN clause.
ALTER [ TABLE | CLASS | VCLASS | VIEW ] table_name
RENAME [ COLUMN | ATTRIBUTE ] old_column_name { AS | TO } new_column_name
ALTER TABLE a_tbl RENAME COLUMN name AS name1;