how to find the second highest salary from emp table?
Answer Posted / khushbu
select max(salary) from emp where salary not in (select
max(salary) from emp)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are the t string functions available in tsql? : Transact sql
What is sql prepared statement?
Is it possible to update views?
What pl/sql package consists of?
What is difference between function and trigger?
What is a sql trace file?
What is the use of procedures?
What is the sql*loader? : aql loader
What are data types in pl sql?
What are the possible values that can be stored in a boolean data field?
Why do we go for stored procedures?
Can ddl statements be used in pl/sql?
What are the types of queries in sql?
define sql delete statement ? : Sql dba
how to convert character strings to numeric values? : Sql dba