how to find the second highest salary from emp table?
Answer Posted / atheeq
select distinct emp_sal from emp where 1 order by emp_sal
desc limit 1,1
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Is it possible to sort a column using a column alias?
What are inner and outer joins examples of both?
How do I count rows in sql query?
Explain aggregate functions are available there in sql?
Why use truncate instead of delete?
Is like operator in sql case sensitive?
How do you explain an index number?
What are different types of indexes?
Can we use update in sql function?
what is “go” in t-sql? : Transact sql
what is meant by urlencode and urldocode? : Sql dba
What are the benefits of pl/sql packages?
What is execution plan in sql?
How do I kill a query in postgresql?
how many columns can be used for creating index? : Sql dba