select
a
from
table_1
where
b in (
select
c
from
table_c
where
d in (
select
e
from
table_e
)
);
我想在最终结果中也通过'd'....任何方式?