1. 程式人生 > >sql優化之:count(distinct xxxx)

sql優化之:count(distinct xxxx)

select count(distinct   column) from table_name;

這樣一條sql在資料量比較大時可能跑的時間很長。

可以用:select count(1) from (select   column from table_name group by column)

效果可以有所改善