bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL ADD Keyword

Concept visual

SQL ADD Keyword

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

ADD Keyword

❮ SQL Keywords

Next

Add

The ADD

command is used to add a column in an existing table.

Example

Add an "Email" column to the "Customers" table:

ALTER TABLE Customers

ADD Email varchar(255);

❮ SQL Keywords

Next

Previous

SQL Keywords Reference

Next

SQL ADD CONSTRAINT Keyword