I have a MySQL table like this:
| id1 | id2 |
| 34567 | 75879 | <---- pair1
| 13245 | 46753 |
| 75879 | 34567 | <---- pair2
| 06898 | 00013 |
with 37 000 entries.
What is the SQL Request or how can i identify duplicates pairs (like pair1 and pair2)?
Thanks