how to check the 3rd max salary from an employee table?
Answer Posted / danny
SELECT min( sal )
FROM emp
WHERE sal
IN (
SELECT DISTINCT sal
FROM emp
ORDER BY sal DESC
LIMIT 0 , 3
)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What does sql stand for?
How insert into statements in sql?
what is self-join? : Sql dba
What are sql ddl commands?
What is partition by in sql?
What is the use of index in hive?
What is linq to sql?
what is the syntax for using sql_variant_property? : Transact sql
What is meant by <> in sql?
How do I send sql query results to excel?
What is sql*plus?
How do I tune a sql query?
What is the difference between drop and truncate commands?
What is pl/sql table? Why it is used?
Hi how to import oracle sequence in Informatica? Please write stored procedure code that will import oracle sequence in Informatica SP transformation as per below scenario Oracle table product list Pro_id, pro_name 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights Now a new flat file with new product list needs to be added to oracle table product list with oracle sequence. flat file product Prono,pro_name, 1, 20 watt tube light 2, 30 watt tube light & target should be like 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights. 104, 20 watt tube light 105, 30 watt tube light thks reg suvarna joshi suvarnaatsuvarna@rediffmail.com