mongo icon indicating copy to clipboard operation
mongo copied to clipboard

$and Operator Error

Open saurabhprasadsah opened this issue 11 months ago • 0 comments

when two condition will be apply: $and ->operator:

db.emp.find({$and:[{'sal':{$get:5000}},{'dept':'coding'}]})

without $and opeartor: same result will be shown db.emp.find({'sal':{$get:5000}},{'dept':'coding'})

saurabhprasadsah avatar Jul 09 '23 14:07 saurabhprasadsah