Answers for "change column table MySQL"

SQL
5

how to alter table column name in mysql

ALTER TABLE your_table_name RENAME COLUMN original_column_name TO new_column_name;
Posted by: Guest on August-28-2020
9

alter table add column

ALTER TABLE table_name 
ADD column_name datatype;
Posted by: Guest on July-08-2020

Code answers related to "change column table MySQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language