Answers for "update name column sql"

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

how to change the column name in sql

ALTER TABLE table_name
CHANGE COLUMN old_name TO new_name;
Posted by: Guest on March-17-2021

Code answers related to "update name column sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language