how to find the second highest salary from emp table?
Answer Posted / pradeep
select sal from emp
where rownum=2
order by sal desc
| Is This Answer Correct ? | 10 Yes | 50 No |
Post New Answer View All Answers
what is collation? : Sql dba
how to check server status with 'mysqladmin'? : Sql dba
Why cross join is used?
what is union? : Sql dba
Why are aggregate functions called so?
What do you mean by rowid?
How do I copy a table in sql?
What are the sql aggregate functions?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?
How to run sql statements through the web interface?
How to process query result in pl/sql?
What is autocommit sql?
What is delimiter sql?
Can we debug stored procedure?
Is sql a backend?