- Reference >
mongoShell Methods >- Collection Methods >
- db.collection.distinct()
db.collection.distinct()¶
On this page
Definition¶
-
db.collection.distinct(field, query, options)¶ mongoShell MethodThis page documents the
mongoshell method, and does not refer to the MongoDB Node.js driver (or any other driver) method. For corresponding MongoDB driver API, refer to your specific MongoDB driver documentation instead.Finds the distinct values for a specified field across a single collection or view and returns the results in an array.
Parameter Type Description fieldstring The field for which to return distinct values. querydocument A query that specifies the documents from which to retrieve the distinct values. optionsdocument Optional. A document that specifies the options. See Options. The
db.collection.distinct()method provides a wrapper around thedistinctcommand.Note
Results must not be larger than the maximum BSON size. If your results exceed the maximum BSON size, use the aggregation pipeline to retrieve distinct values using the
$groupoperator, as described in Retrieve Distinct Values with the Aggregation Pipeline.
Options¶
| Field | Type | Description |
|---|---|---|
collation |
document | Optional. Specifies the collation to use for the operation. Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks. The collation option has the following syntax: When specifying collation, the If the collation is unspecified but the collection has a
default collation (see If no collation is specified for the collection or for the operations, MongoDB uses the simple binary comparison used in prior versions for string comparisons. You cannot specify multiple collations for an operation. For example, you cannot specify different collations per field, or if performing a find with a sort, you cannot use one collation for the find and another for the sort. New in version 3.4. |
Behavior¶
In a sharded cluster, the distinct command may return
orphaned documents.
Array Fields¶
If the value of the specified field is an array,
db.collection.distinct() considers each element of the array
as a separate value.
For instance, if a field has as its value [ 1, [1], 1 ], then
db.collection.distinct() considers 1, [1], and 1 as separate values.
For an example, see Return Distinct Values for an Array Field.
Index Use¶
When possible, db.collection.distinct() operations can use indexes.
Indexes can also cover
db.collection.distinct() operations. See Covered Query for more information
on queries covered by indexes.
Transactions¶
To perform a distinct operation within a transaction:
For unsharded collections, you can use the
db.collection.distinct()method/thedistinctcommand as well as the aggregation pipeline with the$groupstage.For sharded collections, you cannot use the
db.collection.distinct()method or thedistinctcommand.To find the distinct values for a sharded collection, use the aggregation pipeline with the
$groupstage instead. See Distinct Operation for details.
Important
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.
Client Disconnection¶
Starting in MongoDB 4.2, if the client that issued the db.collection.distinct()
disconnects before the operation completes, MongoDB marks
the db.collection.distinct() for termination (i.e. killOp on the
operation).
Replica Set Member State Restriction¶
Starting in MongoDB 4.4, to run on a replica set member,
distinct operations require the member to be in
PRIMARY or SECONDARY state. If the member
is in another state, such as STARTUP2, the
operation errors.
In previous versions, the operations can also be run when the member
is in STARTUP2. However, the operations wait
until the member transitions to RECOVERING.
Examples¶
The examples use the inventory collection that contains the
following documents:
Return Distinct Values for a Field¶
The following example returns the distinct values for the field
dept from all documents in the inventory collection:
The method returns the following array of distinct dept values:
Return Distinct Values for an Embedded Field¶
The following example returns the distinct values for the field
sku, embedded in the item field, from all documents in the
inventory collection:
The method returns the following array of distinct sku values:
See also
Dot Notation for information on accessing fields within embedded documents
Return Distinct Values for an Array Field¶
The following example returns the distinct values for the field
sizes from all documents in the inventory collection:
The method returns the following array of distinct sizes values:
For information on distinct() and array
fields, see the Behavior section.
Specify Query with distinct¶
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":
The method returns the following array of distinct sku values:
Specify a Collation¶
New in version 3.4.
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:
The following aggregation operation includes the Collation option:
For descriptions on the collation fields, see Collation Document.