Answers for "mysql how to change the place of a column within the table"

SQL
0

how to move a columns location in mysql

ALTER TABLE table_name MODIFY password varchar(20) AFTER id
Posted by: Guest on June-12-2020
0

change filed order in mysql

ALTER TABLE Employees CHANGE COLUMN empName empName VARCHAR(50) AFTER department;
Posted by: Guest on May-19-2020

Code answers related to "mysql how to change the place of a column within the table"

Code answers related to "SQL"

Browse Popular Code Answers by Language