Alter table to change column sequence
mysql>
mysql> CREATE TABLE TEAMS
-> (TEAMNO INTEGER NOT NULL,
-> EmployeeNO INTEGER NOT NULL,
-> DIVISION CHAR(6) NOT NULL,
-> PRIMARY KEY (TEAMNO) );
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql>
mysql>
mysql> ALTER TABLE TEAMS
-> ADD TYPE CHAR(1) AFTER TEAMNO;
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql>
mysql> drop table teams;
Query OK, 0 rows affected (0.00 sec)
Related examples in the same category