I have a table MyTable with multiple fields.
eg : ip, gw,id where id is the primary key
I need unique ip,gw pairs
eg:
ip gw id
1.1 a 1
2.1 b 2
3.1 c 3
1.1 a 4
I need to eliminate duplicate pairs ie 1.1 a
I am not able to build such a query
eg : ip, gw,id where id is the primary key
I need unique ip,gw pairs
eg:
ip gw id
1.1 a 1
2.1 b 2
3.1 c 3
1.1 a 4
I need to eliminate duplicate pairs ie 1.1 a
I am not able to build such a query
Comment