ubuntu 12.04 安装mongodb,
apt-get install mongodb
mongodb的创建数据库,我们可以直接use 数据库名称,mongodb会延迟创建该数据库,
use 数据库名称
db.createCollection()//创建集合 db.createCollection(name[, {capped: <boolean>, size: <value>, max <bytes>}])
show collections//显示集合
db.collection.insert();//db.collection.insert(document)collection为集合的名称,db.collection.save()
例子:
> db.stuOpts.insert({id:2,name:'zj',classId:'2'});
db.collection.count()//集合里面的记录
db.collection.find()//查找集合记录
> db.stuOpts.find({id:{$gt:0}})
{ "_id" : ObjectId("5101e911f1577bc90c255c8d"), "id" : 2, "name" : "zj", "classId" : "2" }
db.stuOpts.remove()//删除集合里面的值
db.collection.update(query, update[, options])跟新数据
例子:
> db.stuOpts.update({id:{$gt:3}},{$set:{name:'hunter'}});
> db.stuOpts.find({name:'hunter'})
{ "_id" : ObjectId("5101eccef1577bc90c255c8f"), "classId" : "2", "id" : 4, "name" : "hunter" }