假设我必须插入一个有很多 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
)
所以基本上要插入的值来自不同的子查询,是否有可能实现这种行为?