</>
Skip to content
MongoDB lessons (16/38)

MongoDB — Logical Operators

AND

db.users.find({ $and: [{ age: { $gt: 18 } }, { active: true }] })

OR

db.users.find({ $or: [{ country: "USA" }, { country: "UK" }] })

NOT

db.users.find({ age: { $not: { $gt: 30 } } })

NOR

db.users.find({ $nor: [{ age: { $lt: 18 } }, { active: false }] })

Implicit AND

// Multiple fields = AND
db.users.find({ age: { $gt: 18 }, active: true })

Combined

db.users.find({
  $and: [
    { $or: [{ country: "USA" }, { country: "UK" }] },
    { age: { $gte: 18 } }
  ]
})

Mini Practice

  1. Use AND operator
  2. Use OR operator
  3. Use NOT operator
  4. Combine logical operators

Up Next

Continue with Array Operators — array operators.

Related Topics

Frequently Asked Questions about Logical Operators

What is Logical Operators in MongoDB?

Logical Operators is a fundamental concept in MongoDB. This lesson explains it step by step with clear examples, making it easy for beginners to understand.

How do I learn Logical Operators?

Start by reading the explanation above, then try the code examples. Practice by modifying the examples and experimenting with different values. Hands-on practice is the best way to learn Logical Operators.

Why is Logical Operators important in MongoDB?

Logical Operators is essential for MongoDB development. Understanding this concept will help you write better code and solve real-world problems more effectively.