I have an Sqlite3 database with a table like this:
Table(com1, com2)
A || B
B || A
C || D
D || B
B || D
If I have 2 rows: A || B, and B || A, I want to delete one of them (I don't care which one).
So to obtain:
A || B
C || D
D || B
I've read the many asks about duplicate rows but I cant find something like this. Thanks for any help.