ITedite

SELECT結果に対してSELECT

select * from (select * from tbl2) as t2;

とやればOK。
エイリアスt2を切らないで、

select * from (select * from tbl2);

とやるとエラーになるので注意。