在表中,可能會包含重複值。這並不成問題,不過,有時您也許但願僅僅列出不一樣(distinct)的值。關鍵詞 distinct用於返回惟一不一樣的值。html
表A:post
表B:url
select distinct name from A
執行後結果以下:htm
select distinct name, id from A
執行後結果以下:blog
其實是根據name和id兩個字段來去重的,這種方式Access和SQL Server同時支持。字符串
select distinct xing, ming from B
返回以下結果:get
返回的結果爲兩行,這說明distinct並不是是對xing和ming兩列「字符串拼接」後再去重的,而是分別做用於了xing和ming列。it
select count(distinct name) from A; --表中name去重後的數目, SQL Server支持,而Access不支持
count是不能統計多個字段的,下面的SQL在SQL Server和Access中都沒法運行。class
select count(distinct name, id) from A;
若想使用,請使用嵌套查詢,以下:select
select count(*) from (select distinct xing, name from B) AS M;
select id, distinct name from A; --會提示錯誤,由於distinct必須放在開頭
distinct語句中select顯示的字段只能是distinct指定的字段,其餘字段是不可能出現的。例如,假如表A有「備註」列,若是想獲取distinc name,以及對應的「備註」字段,想直接經過distinct是不可能實現的。但能夠經過其餘方法實現關於SQL Server將一列的多行內容拼接成一行的問題討論
轉自:http://www.cnblogs.com/rainman/archive/2013/05/03/3058451.html