Answers for "how to move column in mysql"

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
1

change column in mysql

#Alter is used
#alter table TableName change CurrentColumnName NewColumnName Specification(size);
alter table TableName change name firstname varchar(30);
Posted by: Guest on April-20-2021

Code answers related to "how to move column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language