| INSERTNameINSERT -- create new rows in a table SynopsisINSERT INTO table [ ( column [, ...] ) ]
{ DEFAULT VALUES | VALUES ( { expression | DEFAULT } [, ...] ) | query }
INSERT INTO table [ ( column [, ...] ) ]
{ DEFAULT VALUES | VALUES ( { expression | DEFAULT } [, ...] ) | query }
[ RETURNING { * | return_expression [, ...] }
[ INTO { record | variable [, ...] } ] ] Description INSERT allows you to insert new rows into a
table. You can insert
a single row at a time or several rows as a result of a query.
The columns in the target list may be listed in any order.
Each column not present in the target list will be inserted
using a default value, either its declared default value
or null.
If the expression for each column is not of the correct data type,
automatic type conversion will be attempted.
If using RETURNING, the clause, INTO { record |
variable [, ...] }, must be specified if INSERT is used as a program statement in a
procedure, function, package, trigger, or anonymous block. INTO { record |
variable [, ...] } must be omitted if the command is not given within the context of a program - for
example as a stand-alone query in PSQL or SQL Interactive.
If RETURNING * is specified, the effect is the same as if RETURNING
return_expression [, ...] was given where each return_expression
is a column in table, for each column in
table, given in the same order as the columns in
table.
In an SPL program, if the result set of the INSERTcommand contains more than one row, then the contents
of the target record or variables of the INTO clause are set to the RETURNING clause expressions based on
one arbitrary row of the result set. If the result set is empty, then the contents of the target record or variables are set to null.
You must have INSERT privilege to a table in
order to insert into it. If you use the query clause to insert rows from a
query, you also need to have SELECT privilege on
any table used in the query.
Parameters- table
The name (optionally schema-qualified) of an existing table.
- column
The name of a column in table.
The column name can be qualified with a subfield name or array
subscript, if needed. (Inserting into only some fields of a
composite column leaves the other fields null.)
- DEFAULT VALUES
All columns will be filled with their default values.
- expression
An expression or value to assign to column.
- DEFAULT
This column will be filled with its default value.
- query
A query (SELECT statement) that supplies the
rows to be inserted. Refer to the SELECT
statement for a description of the syntax.
- return_expression
An expression that may include one or more columns from table.
If a column name from table is specified in return_expression,
the value substituted for the column when return_expression is evaluated is
determined as follows:
If the column specified in return_expression is assigned a value in the INSERT command, then the assigned value is used in the evaluation of return_expression.
If the column specified in return_expression is not assigned a value in the
INSERT command and there is no default value for the column in the table's column definition, then null is used in the evaluation of return_expression.
If the column specified in return_expression is not assigned a value in the
INSERT command and there is a default value for the column in the table's column definition, then the default value is used in the evaluation of return_expression.
- record
A record whose field the evaluated return_expression is to be assigned. The first
return_expression is assigned to the first field in record,
the second return_expression is assigned to the second field in
record, etc. The number of fields in record must
exactly match the number of expressions and the fields must be type-compatible with their assigned expressions.
- variable
A variable to which the evaluated return_expression is to
be assigned. If more than one return_expression and
variable
are specified, the first return_expression is assigned to the
first variable,
the second return_expression
is assigned to the second variable, etc.
The number of variables specified following the INTO
keyword must exactly match the number of expressions following the RETURNING keyword and the
variables must be type-compatible with their assigned expressions.
Outputs On successful completion, an INSERT command returns a command
tag of the form
INSERT oid count
The count is the number
of rows inserted.
Examples Insert a single row into table films:
INSERT INTO films VALUES
('UA502', 'Bananas', 105, '1971-07-13', 'Comedy', '82 minutes');
In this second example, the last column len is
omitted and therefore it will have the default value of null:
INSERT INTO films (code, title, did, date_prod, kind)
VALUES ('T_601', 'Yojimbo', 106, '1961-06-16', 'Drama');
The third example uses the DEFAULT clause for
the date columns rather than specifying a value:
INSERT INTO films VALUES
('UA502', 'Bananas', 105, DEFAULT, 'Comedy', '82 minutes');
INSERT INTO films (code, title, did, date_prod, kind)
VALUES ('T_601', 'Yojimbo', 106, DEFAULT, 'Drama');
This example inserts several rows into table
films from table tmp:
INSERT INTO films SELECT * FROM tmp;
This example inserts into array columns:
-- Create an empty 3x3 gameboard for noughts-and-crosses
-- (these commands create the same board)
INSERT INTO tictactoe (game, board[1:3][1:3])
VALUES (1,'{{"","",""},{"","",""},{"","",""}}');
INSERT INTO tictactoe (game, board)
VALUES (2,'{{,,},{,,},{,,}}');
Compatibility INSERT conforms fully to the SQL standard.
Possible limitations of the query clause are documented under
SELECT.
| |
---|