Hi,
I have a table in Oracle and I want to select all the duplicated values, I mean: I can detect that a register is duplicated because some column contains the same value:
ColumnA ColumnB
1 A
2 A
3 A
4 B
I want to get something like:
1 A
1 A
1 A
Thanks a lot.