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
Can cursors be part of a trigger body?
What is the non-clustered index in sql?
How do you declare a user-defined exception?
Are left and right joins the same?
how to run 'mysql' commands from a batch file? : Sql dba
What is null in pl/sql?
How do you identify a primary key?
What is parameter substitution in sql?
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
What are string functions in sql?
What is before and after trigger?
What does dml mean?
What is dcl in sql?
Describe different types of general function used in sql?
What does select count (*) mean in sql?