12
12
add column col4_5 varchar(20) not null after col4,
13
13
add column col7 varchar(30) not null after col5,
15
15
change column col2 fourth varchar(30) not null after col3,
16
16
modify column col6 int not null first;
18
18
col6 col1 col3 fourth col4 col4_5 col5 col7 col8
21
21
create table t1 (bandID INT NOT NULL PRIMARY KEY, payoutID int NOT NULL);
22
22
insert into t1 (bandID,payoutID) VALUES (1,6),(2,6),(3,4),(4,9),(5,10),(6,1),(7,12),(8,12);