English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The DROP COLUMN command is used to delete a column from an existing table.
The following SQL statement deletes the 'ContactName' column from the 'Customers' table:
ALTER TABLE Customers DROP COLUMN ContactName;