English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The ADD command is used to add a column to an existing table.
The following SQL adds a column "Email" to the "Customers" table:
ALTER TABLE Customers ADD Email varchar(255);