[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
SqlAdd
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
SqlAdd
(SQL) add
Keyword that can be used to add a column to a ?table.alter table AnyTableName add AnyColumnName AnyDataType
/* Add the column 'email' to the table 'people' */ /* the column 'email' is of data type 'varchar' with 70 chars */ alter table people add email varchar(70)
Code links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
