Answers for "how to change the name of column in a table in sql"

SQL
0

change column name in sql

MySQL:
ALTER TABLE Customer CHANGE Address Addr char(50);

Oracle:
ALTER TABLE Customer RENAME COLUMN Address TO Addr;
Posted by: Guest on February-06-2021

Code answers related to "how to change the name of column in a table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language