how to find the second highest salary from emp table?
Answer Posted / pramod sharma
select f_name max(salary)from emp,dep
where salary<(select max(salary)from emp)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are all the common sql function? : Sql dba
How you can copy a file to file content and file to pl/sql table in advance pl/sql?
what is the difference between delete and truncate statement in sql? : Sql dba
What does rownum mean in sql?
Can you join views in sql?
What do you mean by table in sql?
how to get a list of all tables in a database? : Sql dba
what is an alias command? : Sql dba
What is %rowtype in pl sql?
What are the benefits of pl/sql packages?
Compare sql & pl/sql
What is the difference between between and in condition operators?
Why do we create stored procedures & functions in pl/sql and how are they different?
how many ways we can we find the current date using mysql? : Sql dba
What is the most restrictive isolation level? : Transact sql