1 question with no answers
1
vote
0
answers
750
views
Row limiting clause - FETCH FIRST in SQL Developer tool
When i tried to execute this statement:
select salary,DEPARTMENT_ID from EMPLOYEES order by 1 fetch first 15 rows only;
I got an error as follows:
ORA-00933: SQL command not properly ended
I ...