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
What operators deal with null?
Why truncate is faster than delete?
Which is faster view or stored procedure?
What are the basic sql commands?
How many types of normalization are there?
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
Can we insert data into materialized view?
What is foreign key sql?
What is trigger types of trigger?
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
What is crud stand for?
What is view? Can we update view
Where not exists in sql?
what is user defined functions? : Sql dba
how would concatenate strings in mysql? : Sql dba