0
select 
    a 
from 
    table_1 
where 
    b in ( 
       select 
           c 
       from 
           table_c 
       where 
           d in ( 
              select 
                 e 
              from 
                 table_e 
           )
      );

我想在最终结果中也通过'd'....任何方式?

4

1 回答 1

1

您需要使用JOIN

select 
    a ,
    d
from 
    table_1 
inner join table_c
    ON b = c
inner join table_e
    ON d = e
于 2013-09-03T07:22:59.490 回答