關於SQL語句Count的一點細節

2021-08-26 03:51:34 字數 1885 閱讀 7825

count語句支援*、列名、常量、變數,並且可以用distinct關鍵字修飾, 並且count(列名)不會累計null的記錄。下面隨便用一些例子示範一下count的規則:比如對如下表做統計,所有列這裡都用sql_variant型別來表示。

if (object_id ('t_test' )> 0 )

droptablet_test

go createtablet_test (asql_variant , b sql_variant, csql_variant )

insertintot_testselect1 , 1 , 'a'

insertintot_testselect1 , getdate (), null

insertintot_testselect'a' , null , 1

insertintot_testselect3 , null , null

insertintot_testselectnull , null , null

go select*fromt_test

go select

count (* ) --總數

, count (nullif (1 , 1 )) --永遠返回0

, count (a ) --a數量

, count (b) --b數量

, count (distincta ) --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 (aasvarchar (38 ))), 0 ))--a是數字的數量

fromt_test

count語句支援*、列名、常量、變數,並且可以用distinct關鍵字修飾, 並且count(列名)不會累計null的記錄。下面隨便用一些例子示範一下count的規則:比如對如下表做統計,所有列這裡都用sql_variant型別來表示。

if (object_id ('t_test' )> 0 )

droptablet_test

go createtablet_test (asql_variant , b sql_variant, csql_variant )

insertintot_testselect1 , 1 , 'a'

insertintot_testselect1 , getdate (), null

insertintot_testselect'a' , null , 1

insertintot_testselect3 , null , null

insertintot_testselectnull , null , null

go select*fromt_test

go select

count (* ) --總數

, count (nullif (1 , 1 )) --永遠返回0

, count (a ) --a數量

, count (b) --b數量

, count (distincta ) --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 (aasvarchar (38 ))), 0 ))--a是數字的數量

fromt_test

關於SQL語句Count的一點細節

count語句支援 列名 常量 變數,並且可以用distinct關鍵字修飾,並且count 列名 不會累計null的記錄。下面隨便用一些例子示範一下count的規則 比如對如下表做統計,所有列這裡都用sql variant型別來表示。if object id t test 0 drop table ...

關於SQL語句Count的一點細節

count語句支援 列名 常量 變數,並且可以用distinct關鍵字修飾,並且count 列名 不會累計null的記錄。下面隨便用一些例子示範一下count的規則 比如對如下表做統計,所有列這裡都用sql variant型別來表示。if object id t test 0 drop table ...

關於SQL語句Count的一點細節

count語句支援 列名 常量 變數,並且可以用distinct關鍵字修飾,並且count 列名 不會累計null的記錄。下面隨便用一些例子示範一下count的規則 比如對如下表做統計,所有列這裡都用sql variant型別來表示。if object id t test 0 drop table ...