解析关于SQL语句Count的一点细节建站知识
导读:1建站知识本篇文章是对关于SQL语句Count的一点细节进行了详细的分析介绍,需要的朋友参考下seo网站关键词优化网站建设公司。
count语句支持*、列名、常量、变量,并且可以用distinct关键字修饰, 并且count(列名)不会累计null的记录。下面随便用一些例子示范一下count的规则:比如对如下表做统计,所有列这里都用sql_variant类型来表示。
复制代码 代码如下:
if (object_id ('t_test' )> 0 ) drop table t_test go create table t_test (a sql_variant , b sql_variant , c sql_variant )insert into t_test select 1 , 1 , 'a' insert 个业网站建设公司into t_test select 1 , getdate (), null insert into t_test select 'a' , null , 1 insert into t_test select 3 , null , null insert into t_test select null , null , null go select * from t_test 网站seo优化课程go select count (* ) --总数 , count (null网站优化seo培训if (1 , 1 )) --永远返回0 , count (a ) --a数量 , count (b) --b数量 , count (distinct a ) --a不重复数量 , count (isnull (b, c )) --b或者c不为null数量 , count (Coalesce (a , b, c )) --a或者b或者c不为null数量 , count (nullif (a , b)) --a不等于b的数量 , count (nullif (isnumeric (cast (a as varchar (38 ))), 0 ))--a是数字的数量 from t_test
相关seo网站关键词优化网站建设公司。声明: 本文由我的SEOUC技术文章主页发布于:2023-05-23 ,文章解析关于SQL语句Count的一点细节建站知识主要讲述语句,细节,SQL网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.comhttp://www.xahuichuang.com