Hi,
I have a table A like something like this:
| a b c d
--|----------------
1|(1, 2), (0, 0)
2|(3, 1), (1, 2)
3|(0, 0), (3, 1)
4|(0, 0), (1, 2)
In this, I want to eliminate the duplicate where there is same kind of pair (1,2) (0,0) and (0,0) (1,2).
So I would just end up with 3 rows of table
with eliminate either of that pairs...
How do I do this with sql command???
Thanks in advance!!
I have a table A like something like this:
| a b c d
--|----------------
1|(1, 2), (0, 0)
2|(3, 1), (1, 2)
3|(0, 0), (3, 1)
4|(0, 0), (1, 2)
In this, I want to eliminate the duplicate where there is same kind of pair (1,2) (0,0) and (0,0) (1,2).
So I would just end up with 3 rows of table
with eliminate either of that pairs...
How do I do this with sql command???
Thanks in advance!!