Answers for "mongodb shell command to get the last N records"

2

get the last N records in mongodb

In order to get last N records you can execute below query:

db.yourcollectionname.find({$query: {}, $orderby: {$natural : -1}}).limit(yournumber)
if you want only one last record:

db.yourcollectionname.findOne({$query: {}, $orderby: {$natural : -1}})
Posted by: Guest on July-19-2020

Code answers related to "mongodb shell command to get the last N records"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language