how to get second highest salary in SQL(as/4000
Answer Posted / siva kumar yachamaneni
select max(salary) from Employee where salary<(SELECT
max(salary) from Employee)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How to get help at the sql prompt?
How global cursor can be declare with dynamic trigger ?
What is a dynamic query?
Can you join a table to itself?
Can we call stored procedure in function?
Do stored procedures prevent sql injection?
What is pl sql record in oracle?
How do you delete duplicates in sql query using rowid?
What is bind reference and how can it be created?
How can I delete duplicate rows?
what is the difference between a local and a global temporary table? : Sql dba
How do I run a query in pl sql developer?
What is the maximum database size for sql express?
Is left join faster than inner join?
what is user defined functions? : Sql dba