1. How to fetch all the duplicate records from the table.
2. How to fetch the second highest salary from the table.
Answers were Sorted based on User's Feedback
Answer / devraj
(1) Query to fetch all duplicate records:
Select * From emp02 Where Rowid Not In (Select Min(Rowid)
From emp02 Group By No, ename, Work)
(2) Query to fetch 2'nd highest salary:
Select * From (Select a.*, dense_rank () Over (Order By sal
Desc) Vb From emp02 a) Where Vb = 2;
| Is This Answer Correct ? | 7 Yes | 12 No |
Can you pass expressions to stored procedure parameters?
What is SQL Profiler and the use of it?
whate is advantages of sql server 2000
what is the maximum size of sql row in mssql?
Define left outer join in sql server joins?
What is the difference between a fill factor of 100 and 0?
What is the use of Port no?
How to write a query with a left outer join in ms sql server?
what are the joins,primary key,foriegn key, candidate key, super key and expain them?
application server is slow what may be the problem
how to rest identity columns in sql server
What are the instances when triggers are appropriate?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)