Skip to content
Studio 3T - The professional GUI, IDE and client for MongoDB
  • Tools
    • Aggregation Editor
    • IntelliShell
    • Visual Query Builder
    • Export Wizard
    • Import Wizard
    • Query Code
    • SQL Query
    • Connect
    • Schema Explorer
    • Compare
    • SQL ⇔ MongoDB Migration
    • Data Masking
    • Task Scheduler
    • Reschema
    • More Tools and Features
  • Solutions
  • Resources
    • Knowledge Base
    • MongoDB Tutorials & Courses
    • Tool/Feature Documentation
    • Reports
    • Case Studies
    • Whitepapers
    • Blog
    • Testimonials
    • Community
  • Contact us
    • Contact
    • Sales Support
    • Feedback and Support
    • Career
    • About Us
  • Store
    • Buy Now
    • Preferred Resellers
    • Team Pricing
  • My License
  • Download
search

Academy 3T

  • MongoDB 101: Getting Started
  • MongoDB 201: Querying MongoDB Data
  • MongoDB 301: Aggregation

Lesson 5, Exercise 2: Using conditional operators to query embedded documents

MongoDB 201: Querying MongoDB Data Querying Embedded Documents in MongoDB Arrays Lesson 5, Exercise 2: Using conditional operators to query embedded documents

In this exercise, you’ll use IntelliShell to query the documents you added in the previous exercise. As with that exercise, your statements will be based on the values in the embedded documents.

In this exercise, however, you’ll also use conditional operators as part of the query search conditions.

To run the queries in IntelliShell

1. Return to the IntelliShell tab for the customers collection. The tab should still be in place from the previous exercise. 

2. The first task is to retrieve any documents in which the customer has visited a country more than three times. At the command prompt in the IntelliShell editor, replace the existing code with the following find statement:

db.customers.find({ "travel.visits": { $gt: 3 } } );

The statement uses the greater than ($gt) operator to identify any customers who have visited a country the specified number.

When you use a conditional operator in your search condition, you must include the operator and its value, enclosed in curly braces.

3. On the IntelliShell toolbar, click the Run entire script button. The statement returns the Chen document, which is the only one with an embedded document that has a visits value greater than 3.

The statement also demonstrates that you do not need to use the $elemMatch operator when you specify only one search condition.

However, you might still see it used in mongo shell statements. For example, Visual Query Builder automatically uses the operator even if you specify only one search condition, giving you a statement that looks similar to the following:

db.customers.find(
  { travel: { $elemMatch: { visits: { $gt: 3 } } } } );

4. The next task is to find customers who have visited a country more than two times and who have assigned that country a rating of at least 8.

At the command prompt in the IntelliShell editor, replace the existing code with the following find statement:

db.customers.find({
  "travel.visits": { $gt: 2 }, "travel.rating": { $gt: 8 } } );

The statement should return any document with a visits value greater than 2 and a rating value greater than 8. 

5. Click the Run entire script button and switch to JSON View. The statement returns all three documents, even though Gladys is the only customer to have visited a country more than twice and to have rated that country higher than 8.

The query engine returns all three documents because the query doesn’t use the $elemMatch operator, so the specified visits and rating values do not need to appear in the same embedded document.

As you saw in the first exercise, this can lead to unexpected results if your intent was that they be part of the same document.

6. Replace the existing code with the following find statement:

db.customers.find(
  { travel: { $elemMatch: 
    { visits: { $gt: 2 }, rating: { $gt: 8 } } } } );

This time the statement incorporates the $elemMatch operator to return those documents with a visits value greater than 2 and a rating value greater than 8.

7. Run the entire script. The statement now returns only the Gladys document because she is the only customer to meet the search criteria.

8. At the command prompt in the IntelliShell editor, replace the existing code with the following find statement:

db.customers.find(
  { travel: { $elemMatch: 
    { visits: { $gt: 2 }, rating: { $gt: 6, $lt: 9 } } } } );

The statement is similar to the previous one except for the rating element, which now specifies that the value must be greater than 6 but less than 9. MongoDB lets you specify multiple operators in a search condition to help narrow down your search.

9. Return to the IntelliShell toolbar, and click the Run entire script button.The statement returns both the Maria and Chen documents because they have each visited at least one country more than two times and rated that country either a 7 or 8. 

10. At the command prompt in the IntelliShell editor, replace the existing code with the following find statement:

db.customers.find(
  { travel: { $elemMatch: 
    { country: "Thailand", visits: { $gt: 1 }, 
      rating: { $gte: 9 } } } } );

The statement uses the greater than or equal to ($gte) conditional operator to specify possible rating values. The statement also demonstrates that you can use conditional operators along with basic string comparisons when defining the search conditions. 

11. Run the entire script. The statement returns the Maria and Gladys documents because they have each visited Thailand more than once and have rated that country 9 or above. 

12. Leave IntelliShell open for the next exercise.

Next – Lesson 5, Exercise 3: Using Visual Query Builder to query embedded documents
Previous Topic
Back to Lesson
Next Topic
  • Course Home Expand All
    Performing MongoDB CRUD Operations
    4 Topics | 1 Quiz
    Lesson 1, Exercise 1: Adding a document to a collection
    Lesson 1, Exercise 2: Viewing a document in a collection
    Lesson 1, Exercise 3: Updating a document in a collection
    Lesson 1, Exercise 4: Deleting a document from a collection
    Test your skills: Performing CRUD Operations
    Building MongoDB find() Queries
    4 Topics | 1 Quiz
    Lesson 2: The MongoDB find method
    Lesson 2, Exercise 1: Using IntelliShell to build and run find statements
    Lesson 2, Exercise 2: Using Visual Query Builder to build and run find statements
    Lesson 2, Exercise 3: Using Query Code and IntelliShell to modify and run a find statement
    Test your skills: Building MongoDB find() Queries
    Working with the MongoDB Aggregation Pipeline
    6 Topics | 1 Quiz
    Lesson 3: Introducing the MongoDB aggregate method
    Lesson 3, Exercise 1: Filtering the documents in the aggregation pipeline
    Lesson 3, Exercise 2: Grouping the documents in the aggregation pipeline
    Lesson 3, Exercise 3: Adding and removing fields in the aggregation pipeline
    Lesson 3, Exercise 4: Changing the field order in the aggregation pipeline
    Lesson 3, Exercise 5: Sorting the documents in the aggregation pipeline
    Test your skills: Working with the MongoDB Aggregation Pipeline
    Querying Arrays Using MongoDB $elemMatch
    3 Topics | 1 Quiz
    Lesson 4, Exercise 1: Using IntelliShell to query single and multiple values in an array
    Lesson 4, Exercise 2: Using Visual Query Builder to query a single array value
    Lesson 4, Exercise 3: Using Visual Query Builder to query multiple array values
    Test your skills: Querying Arrays Using MongoDB $elemMatch
    Querying Embedded Documents in MongoDB Arrays
    3 Topics | 1 Quiz
    Lesson 5, Exercise 1: Using the $elemMatch operator to query embedded documents
    Lesson 5, Exercise 2: Using conditional operators to query embedded documents
    Lesson 5, Exercise 3: Using Visual Query Builder to query embedded documents
    Test your skills: Querying Embedded Documents in Arrays
    Querying MongoDB with SQL SELECT Statements
    2 Topics | 1 Quiz
    Lesson 6, Exercise 1: Using the SQL Query tool to run SQL statements
    Lesson 6, Exercise 2: Using the SQL Query tool to aggregate collection data
    Test your skills: Querying MongoDB with SQL
    Working with MongoDB Views
    3 Topics | 1 Quiz
    Lesson 7, Exercise 1: Creating a MongoDB view
    Lesson 7, Exercise 2: Querying a MongoDB view
    Lesson 7, Exercise 3: Modifying and deleting a MongoDB view
    Test your skills: Working with MongoDB Views
    Course Extras
    Return to MongoDB 201: Querying MongoDB Data
  • Studio 3T

    MongoDB Enterprise Certified Technology PartnerSince 2014, 3T has been helping thousands of MongoDB developers and administrators with their everyday jobs by providing the finest MongoDB tools on the market. We guarantee the best compatibility with current and legacy releases of MongoDB, continue to deliver new features with every new software release, and provide high quality support.

    Find us on FacebookFind us on TwitterFind us on YouTubeFind us on LinkedIn

    Education

    • Free MongoDB Tutorials
    • Connect to MongoDB
    • Connect to MongoDB Atlas
    • Import Data to MongoDB
    • Export MongoDB Data
    • Build Aggregation Queries
    • Query MongoDB with SQL
    • Migrate from SQL to MongoDB

    Resources

    • Feedback and Support
    • Sales Support
    • Knowledge Base
    • FAQ
    • Reports
    • Case Studies
    • White Papers
    • Testimonials
    • Discounts

    Company

    • About Us
    • Blog
    • Careers
    • Legal
    • Press
    • Privacy Policy
    • EULA

    © 2022 3T Software Labs GmbH. All rights reserved.

    • Privacy Policy
    • Cookie settings
    • Impressum
    When you click "Accept", you are agreeing to cookies being on your device. They may improve site navigation, site usage analysis, or the relevance of messages. It is up to you which cookies are enabled. Read our Privacy Policy.
    Manage cookies
    Accept
    ✕

    Privacy Preference Center

    A cookie is a small file of letters and numbers that is downloaded on to your computer when you visit a website. Cookies are used by many websites and can do a number of things, eg remembering your preferences, recording what you have put in your shopping basket, and counting the number of people looking at a website. In the form below you can choose which cookies, except for essential cookies, to allow or disable.

    Accept all cookies

    Manage consent preferences

    Essential cookies are strictly necessary to provide an online service such as our website or a service on our website which you have requested. The website or service will not work without them.

    Performance cookies allow us to collect information such as number of visits and sources of traffic. This information is used in aggregate form to help us understand how our websites are being used, allowing us to improve both our website’s performance and your experience.

    Functional cookies collect information about your preferences and choices and make using the website a lot easier and more relevant. Without these cookies, some of the site functionality may not work as intended.

    Social media cookies are cookies used to share user behaviour information with a third-party social media platform. They may consequently effect how social media sites present you with information in the future.

    Accept selected