Movatterモバイル変換


[0]ホーム

URL:


September 25, 2025: PostgreSQL 18 Released!
Supported Versions:Current (18) /17 /16 /15 /14 /13
Development Versions:devel
Unsupported versions:12 /11 /10 /9.6 /9.5 /9.4 /9.3 /9.2 /9.1 /9.0 /8.4 /8.3 /8.2 /8.1 /8.0 /7.4 /7.3 /7.2 /7.1
This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for thecurrent version, or one of the other supported versions listed above instead.
PostgreSQL 7.4.30 Documentation
PrevFast BackwardFast ForwardNext

INSERT

Name

INSERT -- create new rows in a table

Synopsis

INSERT INTOtable [ (column [, ...] ) ]    { DEFAULT VALUES | VALUES ( {expression | DEFAULT } [, ...] ) |query }

Description

INSERT allows one to insert new rows into a table. One 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.

You must haveINSERT privilege to a table in order to insert into it. If you use thequery clause to insert rows from a query, you also need to haveSELECT 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 intable.

DEFAULT VALUES

All columns will be filled with their default values.

expression

An expression or value to assign tocolumn.

DEFAULT

This column will be filled with its default value.

query

A query (SELECT statement) that supplies the rows to be inserted. Refer to theSELECT statement for a description of the syntax.

Outputs

On successful completion, anINSERT command returns a command tag of the form

INSERToidcount

Thecount is the number of rows inserted. Ifcount is exactly one, and the target table has OIDs, thenoid is theOID assigned to the inserted row. Otherwiseoid is zero.

Examples

Insert a single row into tablefilms:

INSERT INTO films VALUES    ('UA502', 'Bananas', 105, '1971-07-13', 'Comedy', '82 minutes');

In this second example, the last columnlen 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 theDEFAULT 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 examples inserts several rows into tablefilms from tabletmp:

INSERT INTO films SELECT * FROM tmp;

This example inserts into array columns:

-- Create an empty 3x3 gameboard for noughts-and-crosses-- (all of these commands create the same board)INSERT INTO tictactoe (game, board[1:3][1:3])    VALUES (1,'{{"","",""},{},{"",""}}');INSERT INTO tictactoe (game, board[3][3])    VALUES (2,'{}');INSERT INTO tictactoe (game, board)    VALUES (3,'{{,,},{,,},{,,}}');

Compatibility

INSERT conforms fully to the SQL standard. Possible limitations of thequery clause are documented underSELECT.


PrevHomeNext
GRANTUpLISTEN

[8]ページ先頭

©2009-2025 Movatter.jp