linux之SQL語句簡明教程---DISTINCT,簡明教程---distinct

來源:互聯網
上載者:User

linux之SQL語句簡明教程---DISTINCT,簡明教程---distinct

SELECT 指令讓我們能夠讀取表格中一個或數個欄位的所有資料。這將把所有的資料都抓出,無論資料值有無重複。在資料處理中,我們會經常碰到需要找出表格內的不同資料值的情況。換句話說,我們需要知道這個表格/欄位內有哪些不同的值,而每個值出現的次數並不重要。這要如何達成呢?在 SQL 中,這是很容易做到的。我們只要在 SELECT 後加上一個 DISTINCT 就可以了。DISTINCT 的文法如下:

SELECT DISTINCT "欄位名" 
FROM "表格名";

舉例來說,若要在以下的表格,Store_Information,找出所有不同的店名時,

Store_Information 表格

Store_Name Sales Txn_Date
Los Angeles 1500 05-Jan-1999
San Diego 250 07-Jan-1999
Los Angeles 300 08-Jan-1999
Boston 700 08-Jan-1999

我們就打入,

SELECT DISTINCT Store_Name FROM Store_Information;

結果:

Store_Name
Los Angeles
San Diego
Boston

linux下實測結果:


轉載請註明:小劉

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.