"Rod Taylor" <[EMAIL PROTECTED]> writes:
> INSERT INTO table [ ( column [, ...] ) ]
>     { DEFAULT VALUES | VALUES ( expression [, ...] ) | SELECT query }

The documentation is wrong here, not the code.  SQL92 defines the syntax
as

 <insert statement> ::=
      INSERT INTO <table name> <insert columns and source>

 <insert columns and source> ::=
      [ <left paren> <insert column list> <right paren> ] <query expression>
    | DEFAULT VALUES

 <insert column list> ::= <column name list>

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Reply via email to