select *, count(distinct name) from table group by name结果:
id name count(distinct name)
1 a 1
2 b 1
3 c 1
最后一项是多余的,不用管就行了,目的达到。原来mysql这么笨,轻轻一下就把他骗过去了,现在拿出来希望大家不要被这问题折腾。再顺便说一句,group by 必须放在 order by 和 limit之前,不然会报错。
2023-10-07 12:51:40
select *, count(distinct name) from table group by name结果:
id name count(distinct name)
1 a 1
2 b 1
3 c 1
最后一项是多余的,不用管就行了,目的达到。原来mysql这么笨,轻轻一下就把他骗过去了,现在拿出来希望大家不要被这问题折腾。再顺便说一句,group by 必须放在 order by 和 limit之前,不然会报错。