1、删除一列 mysql alter table 表名 drop 列名; 2、添加一列 2.1 添加一列到表的最后 mysql alter table 表名 add 列名 column specifications and constraints; 2.2 添加一列到表的开始 mysql alter table 表名 add 列名 column specifications and constraints first; ...
use INFORMATION_SCHEMA; SELECT TABLE_NAME,COLUMN_NAME,CONSTRAINT_NAME, REFERENCED_TABLE_NAME, REFERENCED_COLUMN_NAME FROM KEY_COLUMN_USAGE WHERE REFERENCED_TABLE_NAME = '表名';