how to check the 3rd max salary from an employee table?

Answer Posted / neeraj79

SELECT DISTINCT salary
FROM employee
ORDER BY salary DESC
LIMIT(2,1)

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What operators deal with null?

812


Why truncate is faster than delete?

785


Which is faster view or stored procedure?

688


What are the basic sql commands?

741


How many types of normalization are there?

665






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

2258


Can we insert data into materialized view?

708


What is foreign key sql?

744


What is trigger types of trigger?

718


GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?

2760


What is crud stand for?

743


What is view? Can we update view

1079


Where not exists in sql?

668


what is user defined functions? : Sql dba

742


how would concatenate strings in mysql? : Sql dba

738