SQL DROP COLUMN 关键字
DROP COLUMN
The DROP COLUMN
command is used to delete a column in an existing table. (DROP COLUMN 命令用于删除现有表中的列。)
The following SQL deletes the "ContactName" column from the "Customers" table (以下 SQL 语句从 "Customers" 表中删除 "ContactName" 列)
示例
ALTER TABLE Customers
DROP COLUMN ContactName;