how to find the second highest salary from emp table?
Answer Posted / kishor
select max(salary ) from employee
where
sal<(select max(salary)from employee)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you explain an index?
what is subquery? : Sql dba
How do you determine the current isolation level? : Transact sql
How many functions are there in sql?
how to select unique records from a table? : Sql dba
What is the use of count (*) in sql?
What are the popular database management systems in the it industry?
How to write pl sql program in mysql command prompt?
Explain sql data types?
What is the maximum number of rows in sql table?
Explain how to use transactions efficiently : transact sql
how to calculate the difference between two dates? : Sql dba
What are %type and %rowtype for?
Can you load data into multiple tables at once? : aql loader
How to use distinct and count in sql query? Explain