一、 Create ( insert)
eg:
> info={"id":1,"name":"tom"}
{ "id" : 1, "name" : "tom" ,”age”:18}
> db.class.insert(info)
WriteResult({ "nInserted" : 1 })> db.class.find()
{ "_id" : ObjectId("5530dfac5be106fb1275d7d5"), "id" : 1, "name" : "tom" ,”age”:18}
二、Read ( findOne/find )
eg:
1、基本
db.test.find({“id”: 1},{“name”: 1,”id”: 0}) // 第一个参数指定查询条件,第二个参数指定显示的文档
findOne() 方法结果是 符合查询条件的第一条记录,显示效果比较好。看文档的结构清晰
find() 得到符合条件的所有的记录
2、查询中用到的关系符
<1>"$gt", "$gte", "$lt", "$lte", "$ne", //大于小于 不等于这些
eg: db.test.find({'age':{$gt:20}})
<2> "$or", "$in","$nin" // 与或非
db.test.find({'name':'kenn' , 'age:18}) // and 中间逗号隔开db.hlh.find({$or:[{'age':{$lt:25}},{'name':'lin'}]}) // or ,注意冒号 : ,or的条件用[ ]
db.test.find({'city':{$in:['sz','bj']}}) // in,注意中括号:[],$in needs an array
db.hlh.find({'name':{$nin:['lin']}}) //not in []
<3> 正则表达式条件,还不是很会用
db.hlh.find({$or:[{'name':/^l/},{'name':/n$/}]}) # l开头或者n结尾
<4> $where 用法,where利用 value定位查询
db.hlh.find({$where:function(){return this.name='lin'}}) # where:function(),格式
<5> 子文档 查询,用 点 符号 进入 子文档
db.test.find({“addr.city” : ”bj”})
三、Update (update)
eg:
<1> 整体更新
#db.test.update({"id":123},{"id":123,job:"teacher"}) #整体更新;先查到文档,再更新为后面的文档
##>var mod=db.test.findOne({"name":"kenn"})
##>mod.age=40 #利用变量的整体更新
##>db.test.update({"name":"kenn"},mod)
<2>局部更新,利用修改器:$inc 和 $set
#eg:
# db.test.update({"name":"kenn"},{$inc:{"age":-30}}) #age 数值减30
# db.test.update({"name":"kenn"},{$set:{"age":30}}) #age 值直接设为50
#db.mail.update({"_id" : ObjectId("54485c5d78e260df0b3499e2")},{$set:{"content":"thanks to your supporting"}})
<3>upsert 操作(如果条件查询不到就新增一条);使用方法将update的 第三个参数设为true
#db.test.update({"name":"lin"},{$set:{"age":50}},true) # 查找不到,直接添加新纪录
#db.kill.update({},{$inc:{age:4}},true,true) # 没有age的记录直接默认从0加4
<4>批量更新,mongodb 如果匹配多条,默认只更新第一条。如需批量更新,只需要更改update的 第四个参数为true
#eg:db.test.update({},{$set:{"passwd":456}},false,true)
#eg:db.board.update({},{$set:{"activity.numOfMonthRegister:" 3 }},false,true); #对子文档的更新
#remove
#db.test.remove({"name":"lin"})
<5> $push 增加数组,不检查重复性。可以用$addToSet ,添加重复的话只保存一个值
db.hlh.update({'name':'lin'},{$push:{companies:'alibaba'}})
db.hlh.update({'name':'lin'},{$push:{companies:'sina'}})
db.hlh.update({'name':'lin'},{$addToSet:{companies:'sina'}}) #添加不重复的值
{ "_id" : ObjectId("50ea6b6f12729d90ce6e341b"), "age" : 16, "companies" : [ "alibaba","sina"]}
<6> $pop 从数组中移出数据,数据类似队列。{$pop:{key:1}}将从队列末尾移除元素,使用{$pop:{key:-1}}将从队列开头移除元素
db.hlh.update({'name':'lin'},{$pop:{companies:1}}) #删除数组中最后一个数据
<7> $pull (类似 $pop) 删除数组中的元素
db.hlh.update({},{$pull:{companies:'sina'}})
<8> save ,如文档中包含_id,save 和insert 功能相同;如包含_id,则save和upsert功能相同
db.hlh.save({count:24}) #直接插入了一个新的文档
db.hlh.save({"_id" : ObjectId("510f1b718474cd8af024e2d0"),count:44}) #指定文档的count值改成44
四、Delete (remove)
eg:
db.test.remove({“name”: “sam”}); //加入条件,否则是全删
五、索引创建
// pid 为key 值, 1 表示升序, 后面的backgroup 是将创建放到后台运行(如数据大,耗时)
db.test({pid:1},{backgroud:true});
六、 用户管理设置
// admin 库下的用户是全局用户,对所有数据库可读写
db.addUser("username","passwd",true) // true 参数表示只可读
db.system.users.find() // 查看用户
db.auth("username","passwd") //验证