Answer by
crambo (117)
Take a look at the following example:
SELECT *
FROM (SELECT * FROM T_TABLE_NAME) TBL
The subquery is being given an alias of TBL and treated as a table by the outer query. You can repeat this technique and query from subqueries that contain more subqueries. See the following:
select *
from (select * from (select * from t_table_name)tbl1)tbl2