mongodb
诫圣
这个作者很懒,什么都没留下…
展开
-
mongodb 实现case when 自定义排序
mongdob实现类似数据库order by (case lczc = 1 when 100 else lczc) 的排序方式 db.doctorinfo.aggregate( { "$match" : { "cityId" : 118}}, { "$project" : {"deptName" : 1 ,"doctorName":1,"doctorSn":1, "doctorUid" ...原创 2019-10-15 20:43:39 · 4220 阅读 · 1 评论 -
mongodb aggregate函数查看计划
db.doctorinfo.aggregate( [ { "$match" : {"provinceId":13, "doctorService_phone" : "1" , "displayStatus" : 1}}, { "$group" : { "_id" : { "standardDeptId" : "$standardDeptId"} , "standardDeptId" : { "$...原创 2019-10-15 20:42:11 · 2686 阅读 · 0 评论 -
mongodb查询字段是否存在
db.集合.函数({字段:{$exists:true}}) 案例: db.doctorinfo.count({zxExtendKey:{$exists:true}})原创 2019-10-15 20:40:51 · 4342 阅读 · 0 评论 -
修改mongodb列类型
db.文档.find({"列":{$type:Type Number}}).forEach( function(x){ x.列=new NumberInt(x.列); db.文档.save(x); } ); 例如: db.doctorArticle.update({Article_Type: { $ne : 2 }},{$set:{Article_Type:new NumberI...原创 2019-10-15 20:39:22 · 297 阅读 · 0 评论