MongoDB 常用操作
Posted BerMaker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB 常用操作相关的知识,希望对你有一定的参考价值。
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 常用操作的主要内容,如果未能解决你的问题,请参考以下文章