MongoDB常用指令整理
1 查看集合的条数
db.httpRequestLog.count();
2 and查询
{$and:[{"requestUrl":"/sleep_reports/pad/report/upload"},{"requestParam.ring_sn":"P11E12210000035"}]}
3 or查询
{$or:[{"requestParam.ring_sn":"P11E12210000035"},{"requestParam.ring_sn":"P11E12210000036"}]}
in查询
{"zyzd":{$in:["胃痛"]}}
4 索引操作
创建索引:db.httpRequestServiceLog.ensureIndex({"createTime": 1},{expireAfterSeconds: 2592000}); 查看索引:db.httpRequestLog.getIndexes(); 删除索引:db.httpRequestLog.dropIndex("createTime");
5 更新字段为另一个字段的值
db.patient.find({}).forEach( function(item){ db.patient.update({"_id":item._id},{$set:{'shenfenzheng':item.cardId}},false,false); } );
业务需求变更永无休止,技术前进就永无止境!