MongoDB的destinct命令是获取特定字段中不同值列表。该命令适用于普通字段,数组字段和数组内嵌文档.
mongodb的distinct的语句:
复制代码 代码如下:
db.users.distinct('last_name')
等同于 SQL 语句:
复制代码 代码如下:
select DISTINCT last_name from users
表示的是根据指定的字段返回不同的记录集。
一个简单的实例:
// > 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
distinct去重
mongodb distinct、mongodb distinct多列、mongodb 查询distinct、php mongodb distinct、mongodb distinct用法,以便于您获取更多的相关知识。
时间: 2024-11-05 20:41:22