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 Queries vs SQL Queries.
What is the Aggregation Framework?
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.
The aggregation framework has a variety of stages available for you to use. Today, we’ll discuss the basics of how to use $match, $group, $sort, and $limit. Note that the aggregation framework has many other powerful stages, including $count, $geoNear, $graphLookup, $project, $unwind, and others.
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.
Terminology and Concepts
The following table provides an overview of common SQL aggregation terms, functions, and concepts and the corresponding MongoDB aggregation operators:
Terminology and Concepts
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.
SQL Setup
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:
Albums
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 |
Songs
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:
-- Creating the main albums table
CREATE TABLE IF NOT EXISTS albums (
id BIGSERIAL NOT NULL UNIQUE PRIMARY KEY,
name VARCHAR(40) NOT NULL UNIQUE,
band_name VARCHAR(40) NOT NULL,
price float8 NOT NULL,
status VARCHAR(10) NOT NULL
);
-- Creating the songs table
CREATE TABLE IF NOT EXISTS songs (
id SERIAL PRIMARY KEY NOT NULL,
title VARCHAR(40) NOT NULL,
plays integer NOT NULL,
album_id BIGINT NOT NULL REFERENCES albums ON DELETE RESTRICT
);
INSERT INTO albums (name, band_name, price, status)
VALUES
('lo-fi chill hop songs to study to', 'Silicon Infinite', 7.99, 'A'),
('Moon Rocks', 'Silicon Infinite', 1.99, 'B'),
('Flavour', 'Organical', 4.99, 'A');
INSERT INTO songs (title, plays, album_id)
VALUES
('Snow Beats', 133, (SELECT id from albums WHERE name='lo-fi chill hop songs to study to')),
('Rolling By', 242, (SELECT id from albums WHERE name='lo-fi chill hop songs to study to')),
('Clouds', 3191, (SELECT id from albums WHERE name='lo-fi chill hop songs to study to')),
('But First Coffee', 562, (SELECT id from albums WHERE name='Flavour')),
('Autumn', 901, (SELECT id from albums WHERE name='Flavour')),
('Milk Toast', 118, (SELECT id from albums WHERE name='Moon Rocks')),
('Purple Mic', 719, (SELECT id from albums WHERE name='Moon Rocks')),
('One Note Dinner Party', 1242, (SELECT id from albums WHERE name='Moon Rocks'));
MongoDB Setup
The MongoDB examples assume one collection albums
that contains documents with the following schema:
{
name : 'lo-fi chill hop songs to study to',
band_name: 'Silicon Infinite',
price: 7.99,
status: 'A',
songs: [
{ title: 'Snow beats', 'plays': 133 },
{ title: 'Rolling By', 'plays': 242 },
{ title: 'Sway', 'plays': 3191 }
]
}
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.
// Select the database to use.
use('mongodbVSCodePlaygroundDB');
// The drop() command destroys all data from a collection.
// Make sure you run it against the correct database and collection.
db.albums.drop();
// Insert a few documents into the albums collection.
db.albums.insertMany([
{
'name' : 'lo-fi chill hop songs to study to', band_name: 'Silicon Infinite', price: 7.99, status: 'A',
songs: [
{ title: 'Snow beats', 'plays': 133 },
{ title: 'Rolling By', 'plays': 242 },
{ title: 'Clouds', 'plays': 3191 }
]
},
{
'name' : 'Moon Rocks', band_name: 'Silicon Infinite', price: 1.99, status: 'B',
songs: [
{ title: 'Milk Toast', 'plays': 118 },
{ title: 'Purple Mic', 'plays': 719 },
{ title: 'One Note Dinner Party', 'plays': 1242 }
]
},
{
'name' : 'Flavour', band_name: 'Organical', price: 4.99, status: 'A',
songs: [
{ title: 'But First Coffee', 'plays': 562 },
{ title: 'Autumn', 'plays': 901 }
]
},
]);
Quick Reference
Count all records from albums
SQL
SELECT COUNT(*) AS count
FROM albums
MongoDB
db.albums.aggregate( [
{
$group: {
_id: null, // An _id value of null on the $group operator accumulates values for all the input documents as a whole.
count: { $sum: 1 }
}
}
] );
Sum the price field from albums
SQL
SELECT SUM(price) AS total
FROM albums
MongoDB
db.albums.aggregate( [
{
$group: {
_id: null,
total: { $sum: "$price" }
}
}
] );
For each unique band_name, sum the price field
SQL
SELECT band_name,
SUM(price) AS total
FROM albums
GROUP BY band_name
MongoDB
db.albums.aggregate( [
{
$group: {
_id: "$band_name",
total: { $sum: "$price" }
}
}
] );
For each unique band_name, sum the price field, results sorted by sum
SQL
SELECT band_name,
SUM(price) AS total
FROM albums
GROUP BY band_name
ORDER BY total
MongoDB
db.albums.aggregate( [
{
$group: {
_id: "$band_name",
total: { $sum: "$price" }
}
},
{ $sort: { total: 1 } }
] );
For band_name with multiple albums, return the band_name and the corresponding album count
SQL
SELECT band_name,
count(*)
FROM albums
GROUP BY band_name
HAVING count(*) > 1;
MongoDB
db.albums.aggregate( [
{
$group: {
_id: "$band_name",
count: { $sum: 1 }
}
},
{ $match: { count: { $gt: 1 } } }
] );
Sum the price of all albums with status A and group by unique band_name
SQL
SELECT band_name,
SUM(price) as total
FROM albums
WHERE status = 'A'
GROUP BY band_name
MongoDB
db.albums.aggregate( [
{ $match: { status: 'A' } },
{
$group: {
_id: "$band_name",
total: { $sum: "$price" }
}
}
] );
For each unique band_name with status A, sum the price field and return only where the sum is greater than $5.00
SQL
SELECT band_name,
SUM(price) as total
FROM albums
WHERE status = 'A'
GROUP BY band_name
HAVING SUM(price) > 5.00;
MongoDB
db.albums.aggregate( [
{ $match: { status: 'A' } },
{
$group: {
_id: "$band_name",
total: { $sum: "$price" }
}
},
{ $match: { total: { $gt: 5.00 } } }
] );
For each unique band_name, sum the corresponding song plays field associated with the albums
SQL
SELECT band_name,
SUM(songs.plays) as total_plays
FROM albums,
songs
WHERE songs.album_id = albums.id
GROUP BY band_name;
MongoDB
db.albums.aggregate( [
{ $unwind: "$songs" },
{
$group: {
_id: "$band_name",
qty: { $sum: "$songs.plays" }
}
}
] );
For each unique album, get the song from album with the most plays
SQL
SELECT name, title, plays
FROM songs s1 INNER JOIN albums ON (album_id = albums.id)
WHERE plays=(SELECT MAX(s2.plays)
FROM songs s2
WHERE s1.album_id = s2.album_id)
ORDER BY name;
MongoDB
db.albums.aggregate( [
{ $project:
{
name: 1,
plays: {
$filter: {
input: "$songs",
as: "item",
cond: { $eq: ["$item.plays", { $max: "$songs.plays" }] }
}
}
}
}
] );
Wrapping Up
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 the MongoDB Aggregation Pipeline Queries vs SQL Queries. 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.
Resources:
- 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
Want to check out more of my technical posts?
- Why Clickhouse Should Be Your Next Database
- Data Warehouses Are Terrible Application Backends
- The Engineer’s Guide to Enriching Streams and Dimensions
- How to Build Applications over Streaming Data the Right Way
- Using Bloom filter indexes for real-time text search in ClickHouse
Follow Joe Karlsson on Social
- Twitter – https://twitter.com/JoeKarlsson1
- TikTok – https://www.tiktok.com/@joekarlsson
- GitHub – https://github.com/JoeKarlsson
- YouTube – https://www.youtube.com/c/JoeKarlsson
- Twitch – https://www.twitch.tv/joe_karlsson
- Medium – https://medium.com/@joekarlsson
- LinkedIn – https://www.linkedin.com/in/joekarlsson/
- Reddit – www.reddit.com/user/joekarlsson
- Instagram – https://www.instagram.com/joekarlsson/