查询所有
db.collectionName.find({});
查询+格式化显示
db.collectionName.find({}).pretty();
查询排序
db.collectionName.find({"userId":100012}).sort({"updateTime":-1});
更新符合条件的所有数据(注:使用前,先find执行,以确定更新的范围符合要求)
db.collectionName.update({"userId":233290,"shortName":"LCC"},{$set:{"money":"2000","freezeMoney":"0"}},{multi:true});
删除符合条件的所有数据记录(注:使用前,先find执行,以确定删除的范围符合要求)
db.collectionName.remove({"userId":100012});
删除所有数据但保留集合
db.collectionName.remove({});
删除数据及集合本身(慎用)
db.collectionName.drop();
新增集合及插入数据(没有集合=创建集合+插入新记录,有集合=插入新记录)
db.collectionName.save({"usid":123});
或
db.collectionName.insert({"uu":123});