我必须清理具有重复行的表:
id: serial id
gid: group id
url: string <- this is the column that I have to cleanup
一个gid
可能有多个url
值:
id gid url
---- ---- ------------
1 12 www.gmail.com
2 12 www.some.com
3 12 www.some.com <-- duplicate
4 13 www.other.com
5 13 www.milfsome.com <-- not a duplicate
我想对整个表执行一个查询并删除gid
和url
重复的所有行。在上面的示例中,删除后,我希望只剩下 1、2、4 和 5 个。