>SET syntax for INSERT was brought up a few years ago here:
>http://www.postgresql.org/message-id/2c5ef4e30908251010s46d9d566m1da21357891bab3d@mail.gmail.com
>What do we think?
+1
this would save comments in long queries.
and usindg AS as style helper as suggested in the old post has its caveat:
create temp table t( a int,b int);
insert into t select
1 as b,
2 as a;
select * from t ...
regards,
Marc Mamin