mongodbHow to use the MongoDB distinct operator?
The MongoDB distinct
operator is used to find the distinct values for a specified field across a single collection. It returns an array of the distinct values.
Example
db.collection.distinct("field")
Output example
[value1, value2, value3, ...]
Code explanation
db.collection
: specifies the collection from which to retrieve the distinct valuesdistinct("field")
: specifies the field for which to return distinct values
Helpful links
More of Mongodb
- How to check the version of MongoDB?
- How to use watch in MongoDB?
- How to update one document in MongoDB?
- How to update many documents in MongoDB?
- How to use MongoDB queue?
- How to create a many to many relation in MongoDB?
- How to insert new document into MongoDB?
- How to use hint in MongoDB?
- How to work with time series data in MongoDB?
- How to use unwind in MongoDB?
See more codes...