时间:2021-07-01 10:21:17 帮助过:25人阅读
只要是数据库,必须存在有“$in”(在范围之中)、“$nin”(不在范围之中)。
范例:查询姓名是“张三”,“李四”,“王五”
db.students.find({"name" : {"$in" : ["张三", "李四", "王五"]}}).pretty()
范例:不在范围中
db.students.find({"name" : {"$nin" : ["张三", "李四", "王五"]}}).pretty()
MongoDB(课时9 范围运算)
标签:必须 mongodb png 姓名 find bsp pre ima 9.png