MySql删除列(多列) 1.删除单列 alter table 表名 drop column 列名; 2.删除多列 alter table 表名 drop column 列名1,drop column 列名2,drop column 列名3;