[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
SqlAlter
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
SqlAlter
(SQL) alter
Keyword that can be used to modify a ?table.alter table AnyTableName AnyOperation
/* 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]
