數(shù)據(jù)庫(kù)查詢(xún)distinct的用法
數(shù)據(jù)庫(kù)查詢(xún)distinct的用法
數(shù)據(jù)庫(kù)查詢(xún)distinct的用法的用法你知道嗎?下面小編就跟你們?cè)敿?xì)介紹下數(shù)據(jù)庫(kù)查詢(xún)distinct的用法的用法,希望對(duì)你們有用。
數(shù)據(jù)庫(kù)查詢(xún)distinct的用法的用法如下:
在表中,可能會(huì)包含重復(fù)值。這并不成問(wèn)題,不過(guò),有時(shí)您也許希望僅僅列出不同(distinct)的值。關(guān)鍵詞 distinct用于返回唯一不同的值。
表A:
表B:
1.作用于單列
select distinct name from A
執(zhí)行后結(jié)果如下:
2.作用于多列
示例2.1
select distinct name, id from A
執(zhí)行后結(jié)果如下:
實(shí)際上是根據(jù)name和id兩個(gè)字段來(lái)去重的,這種方式Access和SQL Server同時(shí)支持。
示例2.2
select distinct xing, ming from B
返回如下結(jié)果:
返回的結(jié)果為兩行,這說(shuō)明distinct并非是對(duì)xing和ming兩列“字符串拼接”后再去重的,而是分別作用于了xing和ming列。
3.COUNT統(tǒng)計(jì)
select count(distinct name) from A; --表中name去重后的數(shù)目, SQL Server支持,而Access不支持
count是不能統(tǒng)計(jì)多個(gè)字段的,下面的SQL在SQL Server和Access中都無(wú)法運(yùn)行。
select count(distinct name, id) from A;
若想使用,請(qǐng)使用嵌套查詢(xún),如下:
select count(*) from (select distinct xing, name from B) AS M;
4.distinct必須放在開(kāi)頭
select id, distinct name from A; --會(huì)提示錯(cuò)誤,因?yàn)閐istinct必須放在開(kāi)頭
5.其他
distinct語(yǔ)句中select顯示的字段只能是distinct指定的字段,其他字段是不可能出現(xiàn)的。例如,假如表A有“備注”列,如果想獲取distinc name,以及對(duì)應(yīng)的“備注”字段,想直接通過(guò)distinct是不可能實(shí)現(xiàn)的。但可以通過(guò)其他方法實(shí)現(xiàn)關(guān)于SQL Server將一列的多行內(nèi)容拼接成一行的問(wèn)題討論