A.create mytest B.create table mytest C.database mytest D.create database mytest
A.SELECTB.ALLC.LINKD.UNION
A.alter table emp delete column addcolumn; B.alter table emp modify column addcolumn char(10); C.alter table emp change addcolumn addcolumn int; D.alter table emp add column addcolumn int;