Hi,
I have this table:
colA ; colB
1) 1 2
2) 2 1
3) 2 6
4) 3 6
5) 6 3
6) 6 7
7) 7 6
and I need to select from it only the rows that do not have an opposite pair, i.e. only line (3) as it is 2 - 6 and there is no line 6 - 2, all the other lines have opposites, like line (1) 1 - 2 has line (2) 2 - 1 and line (4) has line (5), etc.
any ideas
thanks.