MySQL/INSERT
< MySQL
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...