标签:记录 ike mongod like 开头 person 不包含 find mon
1、ne:不等于
db.person.find({_id:{$ne:3}}); 查询 _id 不等于3的记录
2、nin:相当于not in
db.person.find({_id:{$nin:[1,2]}}); 查询 _id 不是 1、2 的记录
3、exists:是否包含某列
db.person.find({like:{$exists:1}}); 查询记录中包含 like 列名的记录
db.person.find({like:{$exists:0}}); 查询记录中不包含 like 列名的记录
4、/ */:查询以什么开头;
db.person.find({name:/李.*/}); 查询name列以“李“开头的记录
标签:记录 ike mongod like 开头 person 不包含 find mon
原文地址:https://www.cnblogs.com/javasl/p/11279052.html