alter table test rename 新的名字; --修改test表的名字
alter table test add 列名 varchar(10); --添加表列
www.2cto.com
alter table test drop 列名; --删除表列
alter table test modify 列名 char(10) --只修改表列数据类型
||alter table test change 原来列名 新列名 char(40)
将原来列名修改为新列名和新的数据类型