SQL 关键字参考
DROP COLUMN命令用于删除现有表中的列。
以下SQL 从"Customers"表中删除"ContactName"列:
ALTER TABLE Customers DROP COLUMN ContactName;