主頁 > 知識(shí)庫 > 解析關(guān)于SQL語句Count的一點(diǎn)細(xì)節(jié)

解析關(guān)于SQL語句Count的一點(diǎn)細(xì)節(jié)

熱門標(biāo)簽:智能語音車載電話機(jī)器人 貴州外呼回?fù)芟到y(tǒng)是什么 外呼系統(tǒng)的話術(shù) 衛(wèi)星地圖標(biāo)注距離 競(jìng)圣地圖標(biāo)注服務(wù) 安陽天音防封電銷卡 云南全自動(dòng)外呼系統(tǒng)公司 智能外呼系統(tǒng)需要多少錢 陽光創(chuàng)信ai外呼獲客系統(tǒng)助力
 count語句支持*、列名、常量、變量,并且可以用distinct關(guān)鍵字修飾, 并且count(列名)不會(huì)累計(jì)null的記錄。下面隨便用一些例子示范一下count的規(guī)則:比如對(duì)如下表做統(tǒng)計(jì),所有列這里都用sql_variant類型來表示。

復(fù)制代碼 代碼如下:

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 (* )                --總數(shù)
    , count (nullif (1 , 1 ))        --永遠(yuǎn)返回0
    , count (a )                --a數(shù)量
    , count (b)                --b數(shù)量
    , count (distinct a )        --a不重復(fù)數(shù)量
    , count (isnull (b, c ))        --b或者c不為null數(shù)量
    , count (Coalesce (a , b, c ))    --a或者b或者c不為null數(shù)量
    , count (nullif (a , b))        --a不等于b的數(shù)量
    , count (nullif (isnumeric (cast (a as varchar (38 ))), 0 ))--a是數(shù)字的數(shù)量
from t_test

您可能感興趣的文章:
  • SQL語句中SUM與COUNT的區(qū)別深入分析

標(biāo)簽:營口 預(yù)約服務(wù) 欽州 河源 周口 寧夏 鄂爾多斯 湘潭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《解析關(guān)于SQL語句Count的一點(diǎn)細(xì)節(jié)》,本文關(guān)鍵詞  解析,關(guān)于,SQL,語句,Count,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《解析關(guān)于SQL語句Count的一點(diǎn)細(xì)節(jié)》相關(guān)的同類信息!
  • 本頁收集關(guān)于解析關(guān)于SQL語句Count的一點(diǎn)細(xì)節(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章