mysql 对某几个字段去重_百度知道
最佳答案: 分组下不就行了,delete from table where rowid not in (selelct max(rowid) from table group by id,a); 这样就把重复的数据删掉了。更多关于mysql如何多字段去重呢?的问题>>
mysql查询语句,多字段去除重复的问题_百度知道
[专业]答案:select *, count(distinct name) from table group by name 这个 你想去除那些重复 就直接在 distinct 后面 后group by 后面加 就可以了更多关于mysql如何多字段去重呢?的问题>>