Answers for "change column NAME to a table"

SQL
0

change name of colum in sql table

ALTER TABLE "table_name" RENAME COLUMN "column 1" TO "column 2";
Posted by: Guest on September-11-2020
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 "change column NAME to a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language