Find out the 3rd highest salary?
Answer Posted / ritesh sabanis
select max(sal) from employeedata where sal <
(select max(sal) from employeedata where sal not in(select
max(sal)from employeedata)) ;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is linq to sql?
What are the events on which a database trigger can be based?
explain about mysql and its features. : Sql dba
what is the difference between a local and a global temporary table? : Sql dba
Explain the difference in execution of triggers and stored procedures?
Explain what is a column in a table?
How do I write a cron which will run a sql query and mail the results to agroup?
How do you delete duplicates in sql query using rowid?
What is sql partition function?
How to connect a sql*plus session to an oracle server?
What is a unique constraint?
what is the maximum length of a table name, database name, and fieldname in mysql? : Sql dba
How you can copy a file to file content and file to pl/sql table in advance pl/sql?
Is primary key an index?
Can we use delete in merge statement?