SQL Cheat Sheet: Difference between revisions

From Training Material
Jump to navigation Jump to search
Ksolis (talk | contribs)
No edit summary
 
(No difference)

Latest revision as of 08:52, 2 October 2017

To insert more than one record at once, we can do this, with each set of field values separated by a comma:

INSERT INTO example

 (example_id, name, value, other_value)

VALUES

 (100, 'Name 1', 'Value 1', 'Other 1'),
 (101, 'Name 2', 'Value 2', 'Other 2'),
 (102, 'Name 3', 'Value 3', 'Other 3'),
 (103, 'Name 4', 'Value 4', 'Other 4');