I have table-A(1,2,3,4,4,5,6,6,6,7).
how to get all duplicate values?what is sql query?
Answer Posted / nathan
SELECT sal,rn
FROM (SELECT ROW_NUMBER () OVER (PARTITION BY sal ORDER BY
empno DESC) rn,
sal
FROM emp)
WHERE rn > 1;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a synonym? What are its various types?
Can we write dml statement in function in oracle?
What is a read only transaction in oracle?
What is difference between truncate and delete?
What is primefaces used for?
how to handle exceptions in post production
Explain oracle’s server parameter file.
What is the data pump import utility?
why should i declare foreign key constraint as self relation instead of binary relation in tables ?
What are the parameters that we can pass through a stored procedure?
How do we create privileges in oracle?
Explain alias?
What are dml statements in oracle?
can u send the sql dumps to sivakumarr1987@gmail.com plz help me
Is there an oracle sql query that aggregates multiple rows into one row?