Go to the first, previous, next, last section, table of contents.


INSERT syntax

	INSERT INTO table [ (column_name,...) ] VALUES (expression,...)
or	INSERT INTO table [ (column_name,...) ] SELECT ...

An expression may use any previous column in column_name list (or table if no column name list is given).

The following holds for a multi-row INSERT statement:


Go to the first, previous, next, last section, table of contents.