Many thanks
----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Norman Khine" <norman(at)khine(dot)net>
Cc: "Pgsql-Novice" <pgsql-novice(at)postgresql(dot)org>
Sent: Monday, September 23, 2002 5:18 AM
Subject: Re: [NOVICE] Subselect query for a multi table insert single query
> "Norman Khine" <norman(at)khine(dot)net> writes:
> > What should be the correct syntax for embedding this.
>
> This would work fine:
>
> INSERT INTO table VALUES (foo, bar, baz, currval('seq'), ...);
>
> The elements of an INSERT/VALUES list are expressions, not
> necessarily literal constants.
>
> regards, tom lane
>