Hi,
I need to issue an insert into with the select clause. I know this is valid:
insert into (select a,b,c from table_1) values (......)
But is it possible to use a select into one of the 'values' columns, when using insert into .. values (...)?
So, insert into table_1 values (a,b,c, select .... , d)
Thank you