PL/SQL Display the first 10 employees order by salary
Display the first 10 employees order by salary
How to select the first 10 employees order by salary
Example
Select * From (Select * From employees e ORDER BY e.salary ) Where rownum <= 10;
How to select the first 10 employees order by salary
Select * From (Select * From employees e ORDER BY e.salary ) Where rownum <= 10;