解析關於SQL語句Count的一點細節。本站提示廣大學習愛好者:(解析關於SQL語句Count的一點細節)文章只能為提供參考,不一定能成為您想要的結果。以下是解析關於SQL語句Count的一點細節正文
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
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