Windows PowerShell
版权所有 (C) 2009 Microsoft Corporation。保留所有权利。
PS C:\Users\Administrator> mongo
2016-05-23T07:27:25.301+0800 I CONTROL [main] Hotfix KB2731284 or later update is not installed, will zero-out data fil
es
MongoDB shell version: 3.2.0
connecting to: test
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
Questions? Try the support group
http://groups.google.com/group/mongodb-user
> use mydatabase
switched to db mydatabase
> db.persons.insert({name:"xiongjiajia"})
WriteResult({ "nInserted" : 1 })
> show dbs
local 0.000GB
mydatabase 0.000GB
> show collections
persons
> db.system.indexes.find()
> db.persons.find()
{ "_id" : ObjectId("57424110232724e077252bd8"), "name" : "xiongjiajia" }
> db.persons.update({name:"xiongjiajia"},{$set:{name:"admin"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.persons.find()
{ "_id" : ObjectId("57424110232724e077252bd8"), "name" : "admin" }
> var p=db.persons.findOne();
> p
{ "_id" : ObjectId("57424110232724e077252bd8"), "name" : "admin" }
> db.persons.update(p,{name:"root"})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> var p=db.persons.findOne();
> p
{ "_id" : ObjectId("57424110232724e077252bd8"), "name" : "root" }
> db.persons.update({name:"root"},{$set:{name:"admin",age:1}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> var p=db.persons.findOne();
> p
{
"_id" : ObjectId("57424110232724e077252bd8"),
"name" : "admin",
"age" : 1
}
> db.persons.remove({age:2})
WriteResult({ "nRemoved" : 0 })
> db.persons.find()
{ "_id" : ObjectId("57424110232724e077252bd8"), "name" : "admin", "age" : 1 }
> db.persons.remove({age:1})
WriteResult({ "nRemoved" : 1 })
> db.persons.find()
>
相关推荐
MongoDB安装包mongodb-win32-x86_64-2008plus-ssl-3.2.21-signed.msi
mongodb-win32-x86_64-2008plus-ssl-4.0.12-signed.msi
mongodb-win32-x86_64-2008plus-ssl-4.0.23-signed.msi安装包 官网好难下载,找到后跟大家一起分享下,有需要可以来下
mongodb-win32-x86_64-2008plus-ssl-v4.0-latest-signed.msi 资源收集不易
mongodb-win32-x86_64-2008plus-ssl-4.0.10,windows版,官网下载太慢,保存一份
mongodb-win32-x86_64-2008plus-ssl-v3.2-latest-signed.msi
mongodb-win32-x86_64-2012plus-4.2.11-signed下载、安装教程
8. **平台兼容性**:MongoDB支持多种操作系统,包括Windows,这里我们讨论的是适用于64位Windows 2008及更高版本的“mongodb-win32-x86_64-2008plus-ssl-3.2.4-signed.msi”安装包。 安装MongoDB的步骤通常包括: ...
这个特定的安装文件 "mongodb-win32-x86_64-2008plus-ssl-4.0.4-signed.msi" 是针对Windows操作系统设计的,特别适配于64位环境。"win32"虽然在名称中出现,但实际上它指的是适用于Windows平台,因为早期的Windows ...
mongodb-win32-x86_64-2012plus-4.2.20-signed
mongodb-win32-x86_64-enterprise-windows-64-4.2.1-signed.msi mongodb windows 版本,官网下载的
9. **操作系统兼容性**:“mongodb-win32-x86_64-2008plus-ssl-4.0.10-signed”表明这是一个针对Windows 2008 R2或更高版本的64位系统的MongoDB安装包,且已签名,确保了软件的可信度和安全性。 10. **版本4.0.10**...
windows 64 mongo,mongodb-win32-x86_64-2012plus-4.2.1-signed
在给定的压缩包“mongodb-win32-x86_64-2008plus-ssl-4.0.3”中,我们看到的是适用于Windows 64位系统的MongoDB版本,专为2008及更高版本设计,并且包含了SSL支持。这个版本是绿色版,意味着它可以无需正式安装就能...
MongoDb msi 安装包,做缓存的,直接在官网上下载速度太慢,下载完后资源共享。推荐找国内的镜像网站下载。
mongodb-win32-x86_64-2008plus-ssl-v3.0-latest-signed.msi
MongoDB 是一个面向文档存储的数据库,操作起来比较简单和容易。 你可以在MongoDB记录中设置任何属性的索引 (如:FirstName="Sameer",Address="8 Gandhi Road")来实现更快的排序。 你可以通过本地或者网络创建数据...
mongodb安装程序包文件