how to retrieve the top 2 salaried persons from a database?
Answer Posted / mamta
Select sal
from salary_tbl
where rownum <= 2
order by sal desc;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are all types of user defined functions? : Sql dba
What is the most restrictive isolation level? : Transact sql
What is a parameter query?
What is exception? What are the types of exceptions?
Define a temp table?
Can we perform dml in function?
How to Declare Fixed Length String Value In PL SQL
What is delimiter in pl sql?
Explain the insert into statements in sql?
Do prepared statements prevent sql injection?
What is cascade in sql?
Why are cursors used?
What does (*) mean in sql?
Can we use two order by clause in query?
How many rows can sqlite handle?