我有一个包含大量重复数据的mysql表。 例如
ID Visited URL
1 google.com
1 facebook.com
1 google.com
1 facebook.com
2 google.com
2 google.com
我需要避免这些重复的行并获得如下的唯一行。
ID Visited URL
1 google.com
1 facebook.com
2 google.com
我怎么能这样做?有什么建议??
答案 0 :(得分:2)
您可以使用以下任意一种
Select ID,VisitedURL from tablename group by ID,VisitedURL
或
SELECT DISTINCT ID,VisitedURL from tablename
答案 1 :(得分:0)
怎么样?
SELECT DISTINCT ID, Visited URL
FROM YOUR TABLE..
它只会为您提供非重复的行;