how to check the 3rd max salary from an employee table?
Answer Posted / pavan ranga
select top 1 (salary),Name from customers
where salary not in (Select top 2 (Salary) from customers)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the types of joins in sql?
Can we create a trigger on view?
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
How do you optimize a query?
What are inner and outer joins examples of both?
how to use regular expression in pattern match conditions? : Sql dba
What are character functions in sql?
What is recursive stored procedure?
What are the uses of sysdate and user keywords?
How show all rows in sql?
Is pl sql different from sql?
What are the parts of a basic sql query?
Does sql full backup truncate logs?
How do you run a query?
Define tables and fields in a database