ここで間違ったステートメントを説明するために、多くのfkを含むテーブルに挿入する必要があるとしましょう。
insert into mytable
values
(
somevalue
,somevalue
,select id from othertable1 where ...condition
,select id from othertable2 where ...condition
,select id from othertable3 where ...condition
)
したがって、基本的に挿入する値はさまざまなサブクエリから取得されますが、そのような動作を実現することは可能ですか?