MongoDB 命令行语句(小计1)
2015-05-19 本文已影响72人
70fd779f77ba
1.启动
Mongod
若报无访问目录错误可以
mkdir mongodata(名称) ->
mongod --dbpath=mongodata/
2.链接
Mongo
3.使用库
use mydb(库名)
4.查找
db.user.find()
db.user.find({age:20}) 查询age为20的数据
5.显示已有库
show dbs
6.存储数据
db.user.save()
db.user.save({_id:objectId("xxxxxx(id串)")}, age:20) 更新指定id的数据
7.更新操作
db.user.update() 实际上和save操作一样
db.user.update({_id:objectId("xxxxxx")},{$set:{"age":12}}) 这样来更新指定标签的数据
8.删除
db.user.remove() 不传参数不进行任何操作
db.user.remove(age:12) 这样删除age为12的一整条数据
删除数据集合
db.user.drop()
清除库
db.dropDatabase()