Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用或在两个不同的字段上查询 mongodb。
例如我想要{ fieldA : true },或{fieldB : true}。其中任何一个都行得通。
{ fieldA : true }
{fieldB : true}
使用$or运算符:
$or
db.test.find({ $or: [{fieldA : true}, {fieldB : true}]})