INSERT

From braindump
Revision as of 01:49, 18 January 2011 by Uroesch (talk | contribs)
Jump to navigation Jump to search

{{#set:Related SQL command=UPDATE|Related SQL command=DELETE|Related SQL command=SELECT}}

INSERT is referring to the SQL command INSERT.

The INSERT command is used to add or insert data into a table. Syntax may vary between certain types of databases but is generally uniform across multiple vendors.

 INSERT INTO <table> [ ( <column> [, <column> [, <column>] [, ... ]]] ) ]
   VALUES ( <value> [, <value> [, <value>, [, ...]]] )