MongoDB Aggregation Pipeline Queries vs SQL Queries
Joe Karlsson7 min read • Published Feb 07, 2022 • Updated May 10, 2022
Rate this tutorial
Let's be honest: Many devs coming to MongoDB are joining the community
with a strong background in SQL. I would personally include myself in
this subset of MongoDB devs. I think it's useful to map terms and
concepts you might be familiar with in SQL to help
"translate"
your work into MongoDB Query Language (MQL). More specifically, in this
post, I will be walking through translating the MongoDB Aggregation
Pipeline from SQL.
The aggregation framework allows you to analyze your data in real time.
Using the framework, you can create an aggregation pipeline that
consists of one or more
stages.
Each stage transforms the documents and passes the output to the next
stage.
If you're familiar with the Unix pipe |, you can think of the
aggregation pipeline as a very similar concept. Just as output from one
command is passed as input to the next command when you use piping,
output from one stage is passed as input to the next stage when you use
the aggregation pipeline.
SQL is a declarative language. You have to declare what you want to
see—that's why SELECT comes first. You have to think in sets, which can
be difficult, especially for functional programmers. With MongoDB's
aggregation pipeline, you can have stages that reflect how you think—for
example, "First, let's group by X. Then, we'll get the top 5 from every
group. Then, we'll arrange by price." This is a difficult query to do in
SQL, but much easier using the aggregation pipeline framework.
If you want to check out another great introduction to the MongoDB
Aggregation Pipeline, be sure to check out Introduction to the MongoDB
Aggregation
Framework.
The following table provides an overview of common SQL aggregation
terms, functions, and concepts and the corresponding MongoDB
aggregation
operators:
SQL Terms, Functions, and Concepts | MongoDB Aggregation Operators |
---|---|
WHERE | $match |
GROUP BY | $group |
HAVING | $match |
SELECT | $project |
LIMIT | $limit |
OFFSET | $skip |
ORDER BY | $sort |
SUM() | $sum |
COUNT() | $sum and $sortByCount |
JOIN | $lookup |
SELECT INTO NEW_TABLE | $out |
MERGE INTO TABLE | $merge (Available starting in MongoDB 4.2) |
UNION ALL | $unionWith (Available starting in MongoDB 4.4) |
Alright, now that we've covered the basics of MongoDB Aggregations,
let's jump into some examples.
The SQL examples assume two tables, album and songs, that join by
the song.album_id and the songs.id columns. Here's what the tables
look like:
id | name | band_name | price | status |
---|---|---|---|---|
1 | lo-fi chill hop songs to study to | Silicon Infinite | 2.99 | A |
2 | Moon Rocks | Silicon Infinite | 1.99 | B |
3 | Flavour | Organical | 4.99 | A |
id | title | plays | album_id |
---|---|---|---|
1 | Snow Beats | 133 | 1 |
2 | Rolling By | 242 | 1 |
3 | Clouds | 3191 | 1 |
4 | But First Coffee | 562 | 3 |
5 | Autumn | 901 | 3 |
6 | Milk Toast | 118 | 2 |
7 | Purple Mic | 719 | 2 |
8 | One Note Dinner Party | 1242 | 2 |
I used a site called SQL Fiddle,
and used PostgreSQL 9.6 for all of my examples. However, feel free to
run these sample SQL snippets wherever you feel most comfortable. In
fact, this is the code I used to set up and seed my tables with our
sample data:
The MongoDB examples assume one collection
albums
that contains
documents with the following schema:For this post, I did all of my prototyping in a MongoDB Visual Studio
Code plugin playground. For more information on how to use a MongoDB
Playground in Visual Studio Code, be sure to check out this post: How
To Use The MongoDB Visual Studio Code
Plugin.
Once you have your playground all set up, you can use this snippet to
set up and seed your collection. You can also follow along with this
demo by using the MongoDB Web
Shell.
This post is in no way a complete overview of all the ways that MongoDB
can be used like a SQL-based database. This was only meant to help devs
in SQL land start to make the transition over to MongoDB with some basic
queries using the aggregation pipeline. The aggregation framework has
many other powerful stages, including
$count,
$geoNear,
$graphLookup,
$project,
$unwind,
and others.
If you want to get better at using the MongoDB Aggregation Framework, be
sure to check out MongoDB University: M121 - The MongoDB Aggregation
Framework. Or,
better yet, try to use some advanced MongoDB aggregation pipeline
queries in your next project! If you have any questions, be sure to head
over to the MongoDB Community
Forums. It's the
best place to get your MongoDB questions answered.
- MongoDB University: M121 - The MongoDB Aggregation Framework: https://university.mongodb.com/courses/M121/about
- How to Use Custom Aggregation Expressions in MongoDB 4.4: https://developer.mongodb.com/how-to/use-function-accumulator-operators
- Introduction to the MongoDB Aggregation Framework: https://developer.mongodb.com/quickstart/introduction-aggregation-framework
- How to Use the Union All Aggregation Pipeline Stage in MongoDB 4.4: https://developer.mongodb.com/how-to/use-union-all-aggregation-pipeline-stage
- Aggregation Framework with Node.js Tutorial: https://developer.mongodb.com/quickstart/node-aggregation-framework
- Aggregation Pipeline Quick Reference: https://docs.mongodb.com/manual/meta/aggregation-quick-reference
- SQL to Aggregation Mapping Chart: https://docs.mongodb.com/manual/reference/sql-aggregation-comparison
- SQL to MongoDB Mapping Chart: https://docs.mongodb.com/manual/reference/sql-comparison
- Questions? Comments? We'd love to connect with you. Join the conversation on the MongoDB Community Forums: https://developer.mongodb.com/community/forums