how to get second highest salary in SQL(as/4000
Answer Posted / mohamed shahid
select * from (select sal,rownum rn from(select sal from emp order by sal desc)) where rn=2;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How delete a row in sql?
How do I quit sql?
What does a pl/sql package consist of?
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
Is primary key clustered index?
What is a procedure in pl sql?
Can I learn sql in a week?
explain primary keys and auto increment fields in mysql : sql dba
how are mysql timestamps seen to a user? : Sql dba
what is blob? : Sql dba
Can we write dml inside a function in sql server?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?
What is sql stand for?
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba
What is delete command in sql?