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' , nu
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
go
select
count (* )
--总数
, count (nullif (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
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号