how to retrieve the top 2 salaried persons from a database?
Answer Posted / unknown
Select salary from (select salary from employees) where
rownum <=2;
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Is sql a case sensitive language?
What are the different set operators available in sql?
What is pl/sql language case sensitive?
what is the difference between group by and order by in sql? : Sql dba
How do I pipe the output of one isql to another?
How do you write an inner join query?
What are the ddl commands?
Does sql use python?
Why cannot I use bind variables in ddl/scl statements in dynamic sql?
Why is there a need for sqlcode and sqlerrm variables?
What is record variable?
How to place comments in pl/sql?
What are the constraints available in sql?
what is the command used to fetch first 5 characters of the string? : Sql dba
Is like operator in sql case sensitive?