Jonah H. Harris wrote:
> In the end, how is this more efficient or easy than:
>
> INSERT INTO test_tbl VALUES (nextval('test_id_seq'), 'John Doe')
> RETURNING test_id;
> OR
> SELECT test_id FROM NEW TABLE INSERT INTO test_tbl VALUES
> (nextval('test_id_seq'), 'John Doe');
>
> Based on your statement, this should be really easy. It's easy to make
> generalized statements, so let's see an example to compare.
Ah, I was just not clear on what you were comparing this against. So
nevermind.
regards,
Lukas