宗小宗-PHP程序猿

欢迎各位朋友前来,如果我的文章中有不对的地方,还望指正;如需转载,请注明原处

Mysql获取去重后的总数

如果一张表中某个字段存在重复的值,现在我想去重后获取这个字段值的总数

先看这张表

这张表中的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必须放在开头

 

posted @ 2016-04-16 11:46  宗小宗  阅读(10529)  评论(0编辑  收藏  举报