In mongodb, while I run command to get distinct record from collection, It returns only key value for each record, it does not provide whole record data.
In mongodb, while I run command to get distinct record from collection, It returns
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the documentation of MongoDb :
It does not return the whole object, it returns the list of distinct values. See the documentation here.
For more information please provide an example and explain in detail.