Test to check query in Toad
I want to test to make sure that a query is working in Toad. I would like to pull the top 10 rows, but select top 10, column, column, etc. doesn't seem to run.
select empno, ename, sal from (select empno, ename, sal from emp order by sal desc) where rownum <=10;