如果一个sql里要有子查询,如
select * from (
select aa from (select * from t1 where a=b) t11
left join t2 group by col1 )
left join t11(这个地方想再次使用t11)
就是t11这个别名我想在它的可视范围外再使用怎么做呢,因为这个子查询要重复使用而且又比 ...
↧