天天看點

mysql 聚合函數非重複(distinct)查詢

聚合函數非重複(distinct)查詢

  1. 計算去重後的資料行數

    select count(distinct product_type)

    from product;

  2. 計算資料行數後再去重

    select distinct count(product_type)

    from product;

繼續閱讀