vemahendran
vemahendran

Reputation: 58

How to sort different date formats in MongoDB?

How to sort the different date formats in MongoDB? I need to sort the date which is in the format of '22-Mar-2012'.

Upvotes: 1

Views: 606

Answers (1)

ksol
ksol

Reputation: 12235

MongoDB native date type allows sorting naturally. If you're using is, you should have no issue, otherwise I'd suggest you migrate your current data to use this format. See http://www.mongodb.org/display/DOCS/Dates for more on the subject.

Upvotes: 1

Related Questions