I have a table tbl1 which has a column tbl_names. This column contains the name of some other tables. Now I want to write a query in th
Just add a pseudonim to the subquery:
select * from (select tbl_names from tbl1) a;
Good luck )