码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB(三) 常用操作

时间:2018-04-15 18:50:40      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:note   ups   字段   date   ati   esb   collect   常用   not   

MongoDB 常用操作

# 查看索引是否存在
> db.boundary.ensureIndex({ "geometry" : "2dsphere" } )
{
    "createdCollectionAutomatically" : false,
    "numIndexesBefore" : 2,
    "numIndexesAfter" : 2,
    "note" : "all indexes already exist",
    "ok" : 1
}

# 删除索引
> db.boundary.dropIndex({ "geometry" : "2dsphere" })
{ "nIndexesWas" : 2, "ok" : 1 }

# 查询某一字段是否存在
> db.boundary.find( { "geometry": { $exists: true } } ).count()
54

# 删除表中的某一字段
> db.boundary.update( {}, {$unset: {"geometry":""} }, {multi: true} )
WriteResult({ "nMatched" : 1971, "nUpserted" : 0, "nModified" : 54 })

# 创建索引
db.boundary.createIndex({ "geometry": "2dsphere" })

MongoDB(三) 常用操作

标签:note   ups   字段   date   ati   esb   collect   常用   not   

原文地址:https://www.cnblogs.com/bermaker/p/8848667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!