Lets suppose I've to insert into a table with many fk, just to explain here below the wrong statement:
insert into mytable
values
(
somevalue
,somevalue
,select id from othertable1 where ...condition
,select id from othertable2 where ...condition
,select id from othertable3 where ...condition
)
so basically values to insert comes from different subqueries, is it possible to achieve such a behavior ?