How to read 2nd highest sal from EMP table?
Answer Posted / sasikala
select max(salary) from emp where salary<(select max(salary) from emp);
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Explain what are sparse columns?
Define model database?
What do you mean by 'normalization'?
Which Model uses the SET concept
What are the Advantages of using CTE in sql server?
What is table constraint?
Tell me what are the essential components of sql server service broker?
How to perform key word search in tables?
Do you know what is a linked server in sql server?
What is a select query statement in ms sql server?
Explain what are partitioned views and distributed partitioned views?
What happens if null values are involved in comparison operations?
Can an entity have two primary keys?
Can I delete event logs?
why does a sql statement work correctly outside of a user-defined function, but incorrectly inside it? : Sql server administration