1,创建联合主键
alter table 表名 add constraints 结束名 primary key (列名,列名..);
2,新增字符
alter table 表名 add (column datatype [default value][null/not null]);
3,删除列
alter table 表名 drop (column)j;
4,修改表的字符
alter table 表名 modify (column datatype [default value][null/not null])