Consider the following table:
TAB6
A B C
---------- ---------- -
1 2 A
2 1 A
2 3 C
3 4 D
I consider, the records {1,2, A} and {2, 1, A} as duplicate. I need to select and produce the below record set:
A B C A B C
---------- ---------- - ---------- ---------- -
1 2 A or 2 1 A
2 3 C 2 3 C
3 4 D 3 4 D
I tried the below queries. But to no avail.
select t1.*
from t6 t1
, t6 t2
where t1.a <> t2.b
and t1.b <> t2.a
and t1.rowid <> t2.rowid
/
A B C
---------- ---------- -
1 2 A
2 1 A
2 1 A
2 3 C
3 4 D
3 4 D
6 rows selected.
Or even this:
select *
from t6 t1
where exists (select * from t6 t2 where t1.a <> t2.b and t1.b <> t2.a)
/
A B C
---------- ---------- -
1 2 A
2 1 A
2 3 C
3 4 D
Both did not work.
The database would be Oracle 10g. Looking for a pure SQL solution. Every help is appreciated.
Use GREATEST() and LEAST() functions to identify the common values across multiple columns. Then use DISTINCT to winnow out the duplicates.
This gives you the precise record set you asked for. But things will get more complicated if you need to include other columns from T6.
Yes but it will use ASCII values to determine order, which is not always what you might expect (or desire).
That really isn't a lot of data in today's terms. The DISTINCT will cause a sort, which should be able to fit in memory unless
A
andB
are really long VARCHAR2 columns - but probably even then.If this is a query you're going to want to run a lot then you can build a function-based index to satisfy it:
But I would really only bother if you have a genuine performance issue with the query.