Write a query to find second highest salary of an employee.
Answer Posted / senorita
select ename,salary from (select rownum,ename,salary from
emp
order by desc) where rownum=2;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is difference between hql and native sql?
What are stored procedures in mysql?
What does t sql mean?
What is sql query limit?
What are character functions?
What are the benefits of triggers?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
How can I change database name in sql?
Does normalization improve performance?
What is sql partition function?
Is sql a oracle?
what does the t-sql command ident_current does? : Transact sql
Is left join faster than inner join?
What is the difference between sql, mysql and sql server?
What is attribute indicator in pl sql?