溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mongodb執(zhí)行distinct的方法

發(fā)布時間:2020-08-01 09:57:10 來源:億速云 閱讀:2659 作者:清晨 欄目:編程語言

這篇文章主要介紹mongodb執(zhí)行distinct的方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

MongoDB的destinct命令是獲取特定字段中不同值列表。該命令適用于普通字段,數(shù)組字段和數(shù)組內(nèi)嵌文檔。

作用:獲取集合中指定字段的不重復(fù)值,并以數(shù)組的形式返回。

語法:

db.collection_name.distinct(field,query,options)

·field -----指定要返回的字段(string)

·query-----條件查詢(document)

·options-----其他的選項(document)

MongoDB的distinct的語句:

代碼如下:

db.users.distinct('last_name')

等同于 SQL 語句:

代碼如下:

select DISTINCT last_name from users

表示的是根據(jù)指定的字段返回不同的記錄集。

一個簡單的實例:

//
> db.addresses.insert({"zip-code": 10010}) 
> db.addresses.insert({"zip-code": 10010}) 
> db.addresses.insert({"zip-code": 99701}) 
  
> // shell helper: 
> db.addresses.distinct("zip-code"); 
[ 10010, 99701 ] 
  
> // running as a command manually: 
> db.runCommand( { distinct: 'addresses', key: 'zip-code' } ) 
{ "values" : [ 10010, 99701 ], "ok"
//
> db.comments.save({"user": {"points": 25}}) 
> db.comments.save({"user": {"points": 31}}) 
> db.comments.save({"user": {"points": 25}}) 
  
> db.comments.distinct("user.points"); 
[ 25, 31 ]

以上是mongodb執(zhí)行distinct的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI