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
    • Blog
    • Community
    • Testimonials
    • Whitepapers
    • Reports
  • Contact us
    • Contact
    • Sales Support
    • Feedback and Support
    • Careers
    • About Us
  • Store
    • Buy Now
    • Preferred Resellers
    • Team Pricing
  • Download
  • My 3T
search

Academy 3T

  • Explore our courses
    • MongoDB 101: Getting Started
    • MongoDB 201: Querying MongoDB Data
    • MongoDB 301: Aggregation
  • Get certified

Lesson 6, Exercise 2: Using the SQL Query tool to aggregate collection data

MongoDB 201: Querying MongoDB Data Querying MongoDB with SQL SELECT Statements Lesson 6, Exercise 2: Using the SQL Query tool to aggregate collection data

In this exercise, you’ll use SQL Query to build an SQL statement that aggregates data.

After you run the statement, you’ll open the mongo shell code in the Aggregation Editor, where you’ll update a field name in two of the pipeline stages.

To aggregate the collection data

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

2. At the command prompt in the SQL editor, replace the existing code with the following SELECT statement:

select address.state, sum(transactions) as total
from customers
where prio_support = false
group by address.state
order by sum(transactions) desc

The statement groups the documents by the state in which customers live and then provides the total number of transactions per state.

The statement limits the results to those documents with a prio_support value that equals false, indicating that they have not signed up for premium support. The results are then sorted by the number of transactions, in descending order.

3. Press F5 to run the statement. The statement returns an error message stating that SQL Query does not support column aliases. 

Unable to execute

4. The message is referring to the code following the SUM function (as total). The code is attempting to assign the name total to the outputted column.

As you saw in the previous exercise, SQL Query does not support all SQL statement elements.

5. At the command prompt in the SQL editor, replace the existing code with the following SELECT statement and then press F5 to run the statement:

select address.state, sum(transactions) 
from customers
where prio_support = false
group by address.state
order by sum(transactions) desc

The statement should now return 47 rows of data.

6. Go to the Query Code tab and verify that mongo shell is selected in the Language drop-down list. Your code should look like the following figure.

Query code

The code includes the aggregate method, which is called on the customers collection. The $match, $group, $project, and $sort operators are passed in as arguments to the aggregate method.

Each operator carries out a specific task in the aggregate pipeline. If you were to run this code in IntelliShell, you should get the same results as running the original SQL statement.

The third section in this course covered MongoDB aggregations. Refer back to that section for more details about the aggregate method.

7. At the top of the Query Code tab, click the Open query in Aggregation Editor button (Open query in Aggregation Editor). This launches the Aggregation Editor in its own tab in the main window.

The Aggregation tab shows the aggregate query imported from the SQL tab, with the query broken down into individual stages, as shown in the following figure.

Aggregate tab

Like the SQL tab, the Aggregation tab is separated into two sections.

The top section shows the components that make up the aggregate pipeline, and the bottom section shows the results of running the entire pipeline or individual stages.

Currently, the bottom section displays only a placeholder because you have yet to run your statement.

8. Go to the Stage 3 tab and, in the third line of code, replace the first instance of the string SUM(transactions) with the word total, retaining the quotation marks. This renames the summary output column, which you could not do in your SQL statement because column aliases are not supported.

Be sure not to change the actual aggregation operator, which is preceded by a dollar sign, as in $SUM(transactions).

Your Stage 3 code should now look like the following snippet.

{
  "address.state" : "$_id.address᎐state", 
  "total" : "$SUM(transactions)", 
  "_id" : NumberInt(0)
}

9. Go to the Stage 4 tab and, in the second line of code, replace SUM(transactions) with the word total, retaining the quotation marks. This ensures that the new column name is used when sorting the data. Your Stage 4 code should now look like the following snippet.

{
  "total" : NumberInt(-1)
}

10. Go to the Pipeline tab and click the run button on the Aggregation Editor toolbar. 

11. In the Pipeline output window at the bottom of the Aggregation tab, display the results in JSON View. Your aggregation tab should now look similar to the following figure.

Result JSON view

12. Close the Aggregation tab. If prompted to save your changes, click No.

13. Close the SQL tab. If prompted to save your changes, click No.

14. Close Studio 3T.

Quizzes
Test your skills: Querying MongoDB with SQL
Previous Topic
Back to Lesson
Next Quiz
  • 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
    4 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
    MongoDB 201 Mid-Course Feedback
    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
    • White Papers
    • Testimonials
    • Discounts

    Company

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

    © 2023 3T Software Labs Ltd. All rights reserved.

    • Privacy Policy
    • Cookie settings
    • Impressum

    We value your privacy

    With your consent, we and third-party providers use cookies and similar technologies on our website to analyse your use of our site for market research or advertising purposes ("analytics and marketing") and to provide you with additional functions (“functional”). This may result in the creation of pseudonymous usage profiles and the transfer of personal data to third countries, including the USA, which may have no adequate level of protection for the processing of personal data.

    By clicking “Accept all”, you consent to the storage of cookies and the processing of personal data for these purposes, including any transfers to third countries. By clicking on “Decline all”, you do not give your consent and we will only store cookies that are necessary for our website. You can customize the cookies we store on your device or change your selection at any time - thus also revoking your consent with effect for the future - under “Manage Cookies”, or “Cookie Settings” at the bottom of the page. You can find further information in our Privacy Policy.
    Accept all
    Decline all
    Manage cookies
    ✕

    Privacy Preference Center

    With your consent, we and third-party providers use cookies and similar technologies on our website to analyse your use of our site for market research or advertising purposes ("analytics and marketing") and to provide you with additional functions (“functional”). This may result in the creation of pseudonymous usage profiles and the transfer of personal data to third countries, including the USA, which may have no adequate level of protection for the processing of personal data. Please choose for which purposes you wish to give us your consent and store your preferences by clicking on “Accept selected”. You can find further information in our Privacy Policy.

    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.

    Google Analytics

    Google Ads

    Bing Ads

    Facebook

    LinkedIn

    Quora

    Hotjar

    Reddit

    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.

    HubSpot

    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