聚合函數非重複(distinct)查詢
-
計算去重後的資料行數
select count(distinct product_type)
from product;
-
計算資料行數後再去重
select distinct count(product_type)
from product;
計算去重後的資料行數
select count(distinct product_type)
from product;
計算資料行數後再去重
select distinct count(product_type)
from product;