MongoDB 去重(distinct)查詢後求總數(count)

在使用MonoDB 作報表彙總常常的有去重統計總數的需求,在此總結一下實現方式:html 1, 直接使用distinct 語句查詢, 這種查詢會將全部查詢出來的數據返回給用戶, 而後對查詢出來的結果集求總數(耗內存,耗時一些)web var len = db.student.distinct("name",{"age" : 18}).length; print(len) 注,使用這種方法查詢時,查
相關文章
相關標籤/搜索