Find out the 3rd highest salary?
Answer Posted / a.jyothsna
select a.sal
from emp a
where 3=(select distinct(count(b.sal))
from emp b
where a.sal<=b.sal)
| Is This Answer Correct ? | 100 Yes | 45 No |
Post New Answer View All Answers
Write a sql query to find the names of employees that begin with ‘a’?
Does truncate require commit?
Can I call a procedure inside a function?
Why do we need cursor in pl sql?
How does sql store data?
How do you optimize a stored procedure query?
How does sql developer connect to oracle database?
What is synonyms?
What type of join is sql join?
What is meant by <> in sql?
How to know the last executed procedure?
Which sql most popular?
Is ms sql traffic encrypted?
What is a database? Explain
What is an index in sql with example?