select
a
from
table_1
where
b in (
select
c
from
table_c
where
d in (
select
e
from
table_e
)
);
最終結果にも「d」を渡したい....どうにかして?