English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Usage and Examples of SQL ADD Keyword

SQL Keyword Reference

ADD

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);

SQL Keyword Reference