Skip to content

Instantly share code, notes, and snippets.

@zjhmale
Last active August 29, 2015 14:22
Show Gist options
  • Save zjhmale/4299fd13f4ebf308f042 to your computer and use it in GitHub Desktop.
Save zjhmale/4299fd13f4ebf308f042 to your computer and use it in GitHub Desktop.
raw mongo snippets
db.tabclicktime.update(
{tabid: 8},
{$set: {title: "电视剧"}},
{multi: true}
);
//-1 -> desc 1 -> asc
db.tabclicktime.find({tabid: 8}).sort({timestamp: -1})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment