Mongodb if else statement

How to sort a collection by date in MongoDb?

In MongoDb, different ways of sorting can perform on a collection and you can use 1 for ‘asc’|ascending and -1 for ‘desc’|descending.

Syntax:db.collection.find().sort( {column1:1 or -1 [, column2: 1 or -1] });

For example,

db.customers.find().sort({CreatedDate: 'desc'}).toArray(function(error, items) {});
                                                            OR
db.customers.find().sort('CreatedDate', 'desc').toArray(function(error, items) {});
                                                            OR
db.customers.find().sort([['CreatedDate', 'desc']]).toArray(function(error, items) {});
                                                            OR
db.customers.find({}, {sort: {CreatedDate: 'desc'}}).toArray(function(error, items) {});
                                                            OR
db.customers.find({}, {sort: [['CreatedDate', 'desc']]}).toArray(function(error, items) {});

For more detail, go to


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How to sort a collection by date in MongoDb? How to sort a collection by date in MongoDb? Reviewed by Anil Singh on 5:04 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^