INSERT keyword
Inserts data into a database table.
#
Syntax#
ExamplesInserting all columns
Specifying schema
note
Columns can be omitted during INSERT
in which case value will be NULL
Inserting only specific columns
#
Inserting query resultsInsert as select
note
This method allows you to insert several rows at once (as many as your query returns).