1. How to fetch all the duplicate records from the table.
2. How to fetch the second highest salary from the table.
Answer Posted / oracle.hemant
select max(salary) from emp where salary<(select max(salary)
from emp)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is a fill factor?
What is sql collation?
How to modify an existing user defined function?
What is serializable?
Can sub report data source be different from that of the parent report?
What is temporary stored procedure?
Can sql server be linked with other servers like oracle?
What is difference between materialized view and view?
Do you know what is fill factor and pad index?
What is the difference between sql server 2000 object owner and sql server 2005 schema? : sql server database administration
What are the benefits of normalization?
How to create a user to access a database in ms sql server using "create user" statements?
How do you drop an index?
What is report server project?
Can a unique index be created on a column, which contains null?