标签:des style blog http color io ar sp 数据
前言:
此文章主要记录主要的 MongoDB Collection 的 DML操作。
次文章中的 Collection 名字为 yourColl,每一次操作初始包含两条数据
{ "_id": ObjectId("5438df36309dca34635d4460"), "username": "name1", "mail": "name1@abc.com" }, { "_id": ObjectId("5438df40309dca34635d4461"), "username": "name2", "mail": "name2@abc.com", "age": 28 }
db.yourColl.insert({ username: "mayj", mail: "test@abc.com" })
db.yourColl.save({ username: "mayj", mail: "test@abc.com" })
Note: save 操作时如果 documents 当中包含有 主键(_id),去判断主键是否存在,如果存在,则更新原记录,如果不存在,则插入新记录。insert 与save 的区别在于如果一个 document 当中包含有主键(_id)且存在,则不处理处理,返回错误。
db.yourColl.find();
相当于 MySQL 的
Select * from yourColl;
db.yourColl.distinct("username");
相当于 MySQL 的
Select distict name from yourColl;
db.yourColl.find({ age: 28, })
相当于 MySQL 的
Select * from yourColl where age = 28;
db.yourColl.find({ age: {$gt:20} })
相当于 MySQL 的
Select * from yourColl where age > 20;
db.yourColl.find({ age: {$gte:20} })
相当于 MySQL 的
Select * from yourColl where age >= 20;
db.yourColl.find({ age: {$gte: 20, $lt: 30} })
相当于 MySQL 的
Select * from yourColl where age >= 20 and age < 30;
db.yourColl.find({ mail: /abc/i })
相当于 MySQL 的
Select * from yourColl where mail like "%abc%";
db.yourColl.find({ mail: /^abc/i })
相当于 MySQL 的
Select * from yourColl where mail like "%^abc%";
db.yourColl.find({ username: "name1", mail: "name1@abc.com" })
相当于 MySQL 的
Select * from yourColl where username = "name1" and mail = "name1@abc.com";
db.youColl.find({ }, { username: true, mail: 1 })
相当于 MySQL 的
Select username, mail from yourColl;
其中 true 可以用1代替。
db.yourColl.find({}).sort({username:1,mail:-1})
相当于 MySQL 的
Select * from yourColl order by username ASC, mail DESC;
db.yourColl.find({}).limit(2).skip(1)
相当于 MySQL 的
Select * from yourColl limit 1,1
查询 username = name1 或者 username =name2 的数据
db.yourColl.find({ $or:[{username: "name1"}, {username: "name2"}] })
相当于 MySQL 的
Select * from yourColl where username = "name1" or username = "name2";
db.collect1.find({}).count()
相当于 MySQL 的
Select count(*) from yourColl
db.yourColl.update( { username: "name2" }, { $set: { age: 30 } },
false,
true )
相当于 MySQL 的
Update yourColl set age = 30 where username = "name2";
db.yourColl.update( { username: "name2" }, { $set: { age: 30 } },
false,
true )
相当于 MySQL 的
Update yourColl set age = age + 30 where username = "name2";
db.yourColl.update( { username: "name2" }, { $set: { age: 30 }, $inc: { username: "name3" } }, false, true )
相当于 MySQL 的
Update yourColl set age = age + 30, username = "name3" where username = "name2";
db.yourColl.remove({
username: "name3"
})
相当于 MySQL 的
Delete from yourColl where username = "name3";
db.users.findAndModify({ query: {age: {$gte: 25}}, sort: {age: -1}, update: {$set: {name: ‘a2‘}, $inc: {age: 2}}, remove: true });
db.runCommand({ findandmodify : "users", query: {age: {$gte: 25}}, sort: {age: -1}, update: {$set: {name: ‘a2‘}, $inc: {age: 2}}, remove: true });
外部资源链接:
标签:des style blog http color io ar sp 数据
原文地址:http://www.cnblogs.com/tannerBG/p/4023714.html