Answers for "how to modify column 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
1

update column mysql with alter

ALTER TABLE table_name
  MODIFY column_name column_definition
    [ FIRST | AFTER column_name ];
Posted by: Guest on January-28-2021

Code answers related to "how to modify column mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language