MongoDB查询条件-逻辑操作符 --- 2022-04-03

2022-06-29  本文已影响0人  一位先生_

本章介绍,MongoDB的逻辑操作符,类似SQL的and、or条件。

MongoDB支持的逻辑操作符

操作符 说明
$and 类似SQL的and条件,两个条件都匹配
$not 条件取反
$or 类似SQL的or条件,匹配其中一个条件
$nor 两个条件都不匹配

$and

语法:

{ $and: [ { <expression1> }, { <expression2> } , ... , { <expressionN> } ] }

说明:

例子:

db.inventory.find( { $and: [ { qty: { $lt : 10 } }, { qty : { $gt: 50 } }] } )

等价SQL:

select * from inventory where qty > 50 and qty < 10

$not

db.inventory.find( { price: { $not: { $gt: 1.99 } } } )

说明:

类似SQL:

select * from inventory where price <= 1.99

$or

类似SQL的or条件
语法:

{ $or: [ { <expression1> }, { <expression2> }, ... , { <expressionN> } ] }

说明:

例子:

db.inventory.find( { $or: [ { quantity: { $lt: 20 } }, { price: 10 } ] } )

等价SQL:

select * from inventory where quantity < 20 or price=10

$nor

逻辑NOR计算
语法:

{ $nor: [ { <expression1> }, { <expression2> }, ...  { <expressionN> } ] }

例子:

db.inventory.find( { $nor: [ { price: 1.99 }, { sale: true } ]  } )

含义说明:

上一篇 下一篇

猜你喜欢

热点阅读