ORDER BY
Hi,
I am able to use ORDER BY clause in inline view ex.1
SELECT * FROM ( SELECT * FROM table1 ORDER BY 1 ) A * FROM ( SELECT * FROM table1 ORDER BY 1 ) Abut not with sub query ex2
SELECT * FROM table1 WHERE col1 IN (SELECT col2 FROM table2 ORDER BY col2) * FROM table1 WHERE col1 IN (SELECT col2 FROM table2 ORDER BY col2) Please guide me why its not possible. Regards,0