Answers for "mysql move field up"

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

how to move a column to different spot mysql

ALTER TABLE TableEx MODIFY COLUMN colName VARCHAR(50) AFTER colName2;
Posted by: Guest on January-08-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language