count和distinct
distinct和distinctive⼀.count和distinct
count是统计数据条数,distinct是去掉重复列;
count统计的时候会忽略null值,distinct会将重复的null值列作为⼀个。
综上select count(null) from table,结果永远是0。
⼆.count的⼏种形式
常见到count(*),count(1),count(field)的统计写法,这⾥记录下区别:
count(*): 统计表中所有的⾏数,包括null值的列;
count(1): 同count(*)
count(field): 在列上统计个数,会忽略null值
综上,count(*)和count(1)结果⼀致,和count(field)不⼀定⼀致。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论