On this page本页内容
distinct
Finds the distinct values for a specified field across a single collection. 在单个集合中查找指定字段的不同值。distinct returns a document that contains an array of the distinct values. distinct返回包含不同值数组的文档。The return document also contains an embedded document with query statistics and the query plan.退货凭证还包含一个带有查询统计信息和查询计划的嵌入式文档。
The command takes the following form该命令采用以下形式
{
distinct: "<collection>",
key: "<field>",
query: <query>,
readConcern: <read concern document>,
collation: <collation document>,
comment: <any>
}
The command contains the following fields:该命令包含以下字段:
distinct | string | |
key | string | |
query | document | |
readConcern | document |
|
collation | document | Optional.
collation: {
locale: <string>,
caseLevel: <boolean>,
caseFirst: <string>,
strength: <int>,
numericOrdering: <boolean>,
alternate: <string>,
maxVariable: <string>,
backwards: <boolean>
}
|
comment | any |
|
Results must not be larger than the maximum BSON size. 结果不得大于最大BSON大小。If your results exceed the maximum BSON size, use the aggregation pipeline to retrieve distinct values using the 如果结果超过最大BSON大小,请使用聚合管道使用$group operator, as described in Retrieve Distinct Values with the Aggregation Pipeline.$group运算符检索不同值,如使用聚合管道检索不同值中所述。
MongoDB also provides the shell wrapper method MongoDB还为db.collection.distinct() for the distinct command. distinct命令提供了外壳包装方法db.collection.distinct()。Additionally, many MongoDB drivers provide a wrapper method. 此外,许多MongoDB驱动程序都提供了包装方法。Refer to the specific driver documentation.请参阅特定的驱动程序文档。
In a sharded cluster, the 在分片集群中,distinct command may return orphaned documents.distinct命令可能会返回孤立文档。
If the value of the specified 如果指定field is an array, distinct considers each element of the array as a separate value.field的值是数组,distinct会将数组的每个元素视为一个单独的值。
For instance, if a field has as its value 例如,如果字段的值为[ 1, [1], 1 ], then distinct considers 1, [1], and 1 as separate values.[ 1, [1], 1 ],则distinct会将1、[1]和1视为单独的值。
For an example, see Return Distinct Values for an Array Field.有关示例,请参阅返回数组字段的不同值。
When possible, 如果可能,distinct operations can use indexes.distinct操作可以使用索引。
Indexes can also cover索引还可以覆盖distinct operations. distinct的操作。See Covered Query for more information on queries covered by indexes.有关索引涵盖的查询的更多信息,请参阅覆盖查询。
To perform a distinct operation within a transaction:要在事务中执行不同的操作,请执行以下操作:
db.collection.distinct() method/the distinct command as well as the aggregation pipeline with the $group stage.db.collection.distinct()方法/distinct命令以及带有$group阶段的聚合管道。For sharded collections, you cannot use the 对于分片集合,不能使用db.collection.distinct() method or the distinct command.db.collection.distinct()方法或distinct命令。
To find the distinct values for a sharded collection, use the aggregation pipeline with the 要查找分片集合的不同值,请改用带有$group stage instead. $group阶段的聚合管道。See Distinct Operation for details.有关详细信息,请参阅Distinct操作。
In most cases, multi-document transaction incurs a greater performance cost over single document writes, and the availability of multi-document transactions should not be a replacement for effective schema design. 在大多数情况下,与单文档写入相比,多文档事务会带来更大的性能成本,并且多文档事务的可用性不应取代有效的模式设计。For many scenarios, the denormalized data model (embedded documents and arrays) will continue to be optimal for your data and use cases. 对于许多场景,非规范化的数据模型(嵌入式文档和数组)将继续是您的数据和用例的最佳选择。That is, for many scenarios, modeling your data appropriately will minimize the need for multi-document transactions.也就是说,对于许多场景,适当地建模数据将最小化多文档事务的需要。
For additional transactions usage considerations (such as runtime limit and oplog size limit), see also Production Considerations.有关其他事务使用注意事项(如运行时限制和oplog大小限制),请参阅生产注意事项。
Starting in MongoDB 4.2, if the client that issued the 从MongoDB 4.2开始,如果发出distinct disconnects before the operation completes, MongoDB marks the distinct for termination (i.e. killOp on the operation).distinct命令的客户端在操作完成之前断开连接,MongoDB会将distinct标记为终止(即操作上的killOp)。
Starting in MongoDB 4.4, to run on a replica set member, 从MongoDB 4.4开始,要在副本集成员上运行,distinct operations require the member to be in PRIMARY or SECONDARY state. distinct操作要求该成员处于PRIMARY或SECONDARY状态。If the member is in another state, such as 如果成员处于其他状态,例如STARTUP2, the operation errors.STARTUP2,则操作错误。
In previous versions, the operations can also be run when the member is in 在以前的版本中,当成员位于STARTUP2. STARTUP2中时,也可以运行这些操作。However, the operations wait until the member transitions to 但是,操作会一直等到成员转换到RECOVERING.RECOVERING。
The examples use the 示例使用包含以下文档的inventory collection that contains the following documents:inventory集合:
{ "_id": 1, "dept": "A", "item": { "sku": "111", "color": "red" }, "sizes": [ "S", "M" ] }
{ "_id": 2, "dept": "A", "item": { "sku": "111", "color": "blue" }, "sizes": [ "M", "L" ] }
{ "_id": 3, "dept": "B", "item": { "sku": "222", "color": "blue" }, "sizes": "S" }
{ "_id": 4, "dept": "A", "item": { "sku": "333", "color": "black" }, "sizes": [ "S" ] }
The following example returns the distinct values for the field 以下示例从dept from all documents in the inventory collection:inventory集合中的所有文档中返回字段dept的不同值:
db.runCommand ( { distinct: "inventory", key: "dept" } )
The command returns a document with a field named 该命令返回一个文档,其中包含一个名为values that contains the distinct dept values:values的字段,该字段包含不同的dept值:
{
"values" : [ "A", "B" ],
"ok" : 1
}
The following example returns the distinct values for the field 以下示例从sku, embedded in the item field, from all documents in the inventory collection:inventory集合中的所有文档中返回嵌入在item字段中的字段sku的不同值:
db.runCommand ( { distinct: "inventory", key: "item.sku" } )
The command returns a document with a field named 该命令返回一个文档,其中包含一个名为values that contains the distinct sku values:values的字段,该字段包含不同的sku值:
{
"values" : [ "111", "222", "333" ],
"ok" : 1
}
Dot Notation点表示法 for information on accessing fields within embedded documents有关访问嵌入文档中字段的信息
The following example returns the distinct values for the field 以下示例从sizes from all documents in the inventory collection:inventory集合中的所有文档返回字段sizes的不同值:
db.runCommand ( { distinct: "inventory", key: "sizes" } )
The command returns a document with a field named 该命令返回一个文档,其中包含一个名为values that contains the distinct sizes values:values的字段,该字段包含不同的sizes值:
{
"values" : [ "M", "S", "L" ],
"ok" : 1
}
For information on 有关distinct and array fields, see the Behavior section.distinct字段和数组字段的信息,请参阅行为部分。
distinctdistinct指定查询The following example returns the distinct values for the field 以下示例从sku, embedded in the item field, from the documents whose dept is equal to "A":dept等于"A"的文档中返回嵌入item字段中的字段sku的不同值:
db.runCommand ( { distinct: "inventory", key: "item.sku", query: { dept: "A"} } )
The command returns a document with a field named 该命令返回一个文档,其中包含一个名为values that contains the distinct sku values:values的字段,该字段包含不同的sku值:
{
"values" : [ "111", "333" ],
"ok" : 1
}
Collation排序规则 allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.允许用户为字符串比较指定特定于语言的规则,例如字母大小写和重音标记的规则。
A collection 集合myColl has the following documents:myColl包含以下文档:
{ _id: 1, category: "café", status: "A" }
{ _id: 2, category: "cafe", status: "a" }
{ _id: 3, category: "cafE", status: "a" }
The following aggregation operation includes the Collation option:以下聚合操作包括排序规则选项:
db.runCommand(
{
distinct: "myColl",
key: "category",
collation: { locale: "fr", strength: 1 }
}
)
For descriptions on the collation fields, see Collation Document.有关排序字段的描述,请参阅排序规则文档。
To override the default read concern level of 要覆盖默认的读取关注级别"local", use the readConcern option."local",请使用readConcern选项。
The following operation on a replica set specifies a Read Concern of 以下对副本集的操作将读取关注点指定为"majority" to read the most recent copy of the data confirmed as having been written to a majority of the nodes."majority",以读取确认已写入大多数节点的数据的最新副本。
Regardless of the read concern level, the most recent data on a node may not reflect the most recent version of the data in the system.无论读取关注级别如何,节点上的最新数据可能不会反映系统中数据的最新版本。
db.runCommand(
{
distinct: "restaurants",
key: "rating",
query: { cuisine: "italian" },
readConcern: { level: "majority" }
}
)
To ensure that a single thread can read its own writes, use 要确保单个线程可以读取自己的写入,请对副本集的主线程使用"majority" read concern and "majority" write concern against the primary of the replica set."majority"读取关注点和"majority"写入关注点。