Answers for "can we change the name of the column using alter"

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
2

modify column name in sql

ALTER TABLE `Table Name` MODIFY COLUMN `Column Name` Datatype(Size);
Posted by: Guest on July-29-2020

Code answers related to "can we change the name of the column using alter"

Code answers related to "SQL"

Browse Popular Code Answers by Language