Answers for "changing the name of a column in sql"

SQL
2

modify column name in sql

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

how to change a collumn name in sql

ALTER TABLE `table_name` 
CHANGE `old_name` `new_name` VARCHAR(10) 
CHARACTER SET utf8 
COLLATE utf8_general_ci NULL 
DEFAULT NULL;
Posted by: Guest on February-01-2021

Code answers related to "changing the name of a column in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language