如果一张表中某个字段存在重复的值,现在我想去重后获取这个字段值的总数
先看这张表
这张表中的openid有重复值
怎么通过sql语句获取openid的去重总数呢
select count(distinct(openid)) as count from upay_order
-------------------------------------------------------------------------------------
补充
1.既可以使用distinct name,也可以用distinct(name)
2.select distinct name from A 对name去重
3.select distinct name, id from A 根据"name+id"来去重
4.select id, distinct name from A; --会提示错误,因为distinct必须放在开头