MySQL/INSERT

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< MySQL
Revision as of 01:06, 26 October 2019 by Woozle (talk | contribs) (Created page with "==Usage== "INSERT" implies "INSERT INTO"; the "INTO" is always optional. Inserting a list of values:<source lang=mysql>INSERT table_name(col1,col2,col3...) VALUES (value1, val...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Usage

"INSERT" implies "INSERT INTO"; the "INTO" is always optional.

Inserting a list of values:

INSERT table_name(col1,col2,col3...) VALUES (value1, value2, value3...)

Inserting the contents of another table or query (NOT YET VERIFIED):

INSERT table_name(col1,col2,col3...) SELECT col1,col2,col3 FROM...

Links