programming
SQL Practice

SQL BOLT

Recently, while browsing the internet to learn new things, I discovered an amazing website that teaches how to use SQL queries. For the first time in my life, I was convinced that SQL queries could be fun. I had always been scared of them because my instructor made them seem like a nightmare.

SQL Lesson 1: SELECT queries 101

-- to select specific columns 
SELECT column, another_column, ...
FROM mytable
 
-- to get every thing we can use *
 
SELECT *
FROM mytable

Exercise 1 — Tasks

  • Find the title of each film
  • Find the director of each film
  • Find the title and director of each film
  • Find the title and year of each film
  • Find all the information about each film

Table: movies

idtitledirectoryearlength_minutes
1Toy StoryJohn Lasseter199581
2A Bug's LifeJohn Lasseter199895
3Toy Story 2John Lasseter199993
4Monsters, Inc.Pete Docter200192
5Finding NemoAndrew Stanton2003107
6The IncrediblesBrad Bird2004116
7CarsJohn Lasseter2006117
8RatatouilleBrad Bird2007115
9WALL-EAndrew Stanton2008104
10UpPete Docter2009101
11Toy Story 3Lee Unkrich2010103
12Cars 2John Lasseter2011120
13BraveBrenda Chapman2012102
14Monsters UniversityDan Scanlon2013110
-- Find the title of each film
SELECT title FROM movies
 
-- Find the director of each film
SELECT Director FROM movies
 
-- Find the title and director of each film
SELECT Director, Title FROM movies
 
-- Find the title and year of each film
SELECT year, Title FROM movies
 
 
-- Find all the information about each film
SELECT * FROM movies
 

SQL Lesson 2: Queries with constraints (Pt. 1)

SELECT column, another_column, …
FROM mytable
WHERE condition
    AND/OR another_condition
    AND/OR …;
OperatorConditionSQL Example
=, !=, < , < = >, >=Standard numerical operatorscol_name != 4
BETWEEN … AND …Number is within range of two values (inclusive)col_name BETWEEN 1.5 AND 10.5
NOT BETWEEN … AND …Number is not within range of two values (inclusive)col_name NOT BETWEEN 1 AND 10
IN (…)Number exists in a listcol_name IN (2, 4, 6)
NOT IN (…)Number does not exist in a listcol_name NOT IN (1, 3, 5)

Exercise 2 — Tasks

  • Find the movie with a row id of 6
  • Find the movies released in the years between 2000 and 2010
  • Find the movies not released in the years between 2000 and 2010
  • Find the first 5 Pixar movies and their release year
-- Find the movie with a row id of 6
SELECT id, title FROM movies
WHERE id == 6 
 
 
-- Find the movies released in the years between 2000 and 2010
SELECT * FROM movies
WHERE year BETWEEN 2000 AND 2010 
 
-- Find the movies not released in the years between 2000 and 2010
SELECT * FROM movies
WHERE year NOT BETWEEN 2000 AND 2010 
 
-- Find the first 5 Pixar movies and their release year
SELECT * FROM movies
WHERE id BETWEEN 0 AND 5

SQL Lesson 3: Queries with constraints (Pt. 2)

OperatorConditionExample
=Case sensitive exact string comparison (notice the single equals)col_name = "abc"
!= or < >Case sensitive exact string inequality comparisoncol_name != "abcd"
LIKECase insensitive exact string comparisoncol_name LIKE "ABC"
NOT LIKECase insensitive exact string inequality comparisoncol_name NOT LIKE "ABCD"
%Used anywhere in a string to match a sequence of zero or more characterscol_name LIKE "%AT%" (matches "AT", "ATTIC", "CAT" or even "BATS")
_Used anywhere in a string to match a single charactercol_name LIKE "AN_" (matches "AND", but not "AN")
IN (…)String exists in a listcol_name IN ("A", "B", "C")
NOT IN (…)String does not exist in a listcol_name NOT IN ("D", "E", "F")

We should note that while most database implementations are quite efficient when using these operators, full-text search is best left to dedicated libraries like Apache Lucene (opens in a new tab) or Sphinx (opens in a new tab). These libraries are designed specifically to do full text search, and as a result are more efficient and can support a wider variety of search features including internationalization and advanced queries.

Exercise 3 — Tasks

  • Find all the Toy Story movies
  • Find all the movies directed by John Lasseter
  • Find all the movies (and director) not directed by John Lasseter
  • Find all the WALL-* movies
-- Find all the Toy Story movies
SELECT title FROM movies
WHERE title  
    LIKE "%Toy%"
 
-- Find all the movies directed by John Lasseter
SELECT * FROM movies
WHERE Director = "John Lasseter"
 
-- Find all the movies (and director) not directed by John Lasseter
SELECT * FROM movies
WHERE Director != "John Lasseter"
 
-- Find all the WALL-* movies
SELECT * FROM movies
WHERE Title LIKE "WALL%"    

SQL Lesson 4: Filtering and sorting Query results

  • DISTINCT
SELECT DISTINCT column, another_column, …
FROM mytable
WHERE condition(s);
  • ORDER BY column ASC/DESC;
SELECT column, another_column, …
FROM mytable
WHERE condition(s)
ORDER BY column ASC/DESC;
  • LIMIT num_limit OFFSET num_offset;
SELECT column, another_column, …
FROM mytable
WHERE condition(s)
ORDER BY column ASC/DESC
LIMIT num_limit OFFSET num_offset;

Exercise 4 — Tasks

  • List all directors of Pixar movies (alphabetically), without duplicates ✓
  • List the last four Pixar movies released (ordered from most recent to least)
  • List the first five Pixar movies sorted alphabetically
  • List the next five Pixar movies sorted alphabetically
-- List all directors of Pixar movies (alphabetically), without duplicates ✓
SELECT DISTINCT Director FROM movies
ORDER BY Director ASC
 
-- List the last four Pixar movies released (ordered from most recent to least)
SELECT * FROM movies
ORDER BY year DESC
LIMIT 4
 
-- List the first five Pixar movies sorted alphabetically
SELECT * FROM movies
ORDER BY title ASC
LIMIT 5
 
-- List the next five Pixar movies sorted alphabetically
SELECT * FROM movies
ORDER BY title ASC
LIMIT 5 OFFSET 5

SQL Review: Simple SELECT Queries

Table: North_american_cities

CityCountryPopulationLatitudeLongitude
GuadalajaraMexico1,500,80020.659699-103.349609
TorontoCanada2,795,06043.653226-79.383184
HoustonUnited States2,195,91429.760427-95.369803
New YorkUnited States8,405,83740.712784-74.005941
PhiladelphiaUnited States1,553,16539.952584-75.165222
HavanaCuba2,106,14623.054070-82.345189
Mexico CityMexico8,555,50019.432608-99.133208
PhoenixUnited States1,513,36733.448377-112.074037
Los AngelesUnited States3,884,30734.052234-118.243685
Ecatepec de MorelosMexico1,742,00019.601841-99.050674
MontrealCanada1,717,76745.501689-73.567256
ChicagoUnited States2,718,78241.878114-87.629798

Review 1 — Tasks

  • List all the Canadian cities and their populations ✓
  • Order all the cities in the United States by their latitude from north to south
  • List all the cities west of Chicago, ordered from west to east
  • List the two largest cities in Mexico (by population)
  • List the third and fourth largest cities (by population) in the United States and their population
-- List all the Canadian cities and their populations ✓
SELECT * FROM north_american_cities
WHERE Country LIKE "Canada"
 
-- Order all the cities in the United States by their latitude from north to south
SELECT * FROM north_american_cities
WHERE Country LIKE "United States"
ORDER BY Latitude DESC 
 
-- I Directly copy pasted this one becase i dont want to put energy on learning Longitude and Latidude
-- List all the cities west of Chicago, ordered from west to east
SELECT city, longitude FROM north_american_cities
WHERE longitude < -87.629798
ORDER BY longitude ASC;
 
-- List the two largest cities in Mexico (by population)
SELECT * FROM North_american_cities
WHERE Country LIKE "Mexico"
ORDER BY Population DESC
LIMIT 2
 
-- List the third and fourth largest cities (by population) in the United States and their population
SELECT * FROM North_american_cities
WHERE Country LIKE "United States"
ORDER BY Population DESC
LIMIT 2 OFFSET 2

SQL Lesson 6: Multi-table queries with JOINs

There are Two Table to work with

Table: Movies (Read-Only)

idtitledirectoryearlength_minutes
1Toy StoryJohn Lasseter199581
2A Bug's LifeJohn Lasseter199895
3Toy Story 2John Lasseter199993
4Monsters, Inc.Pete Docter200192
5Finding NemoAndrew Stanton2003107
6The IncrediblesBrad Bird2004116
7CarsJohn Lasseter2006117
8RatatouilleBrad Bird2007115
9WALL-EAndrew Stanton2008104
10UpPete Docter2009101
11Toy Story 3Lee Unkrich2010103
12Cars 2John Lasseter2011120
13BraveBrenda Chapman2012102
14Monsters UniversityDan Scanlon2013110

Table: Boxoffice (Read-Only)

movie_idratingdomestic_salesinternational_sales
58.2380,843,261555,900,000
147.4268,492,764475,066,843
88.0206,445,654417,277,164
126.4191,452,396368,400,000
37.9245,852,179239,163,000
68.0261,441,092370,001,000
98.5223,808,164297,503,696
118.4415,004,880648,167,031
18.3191,796,233170,162,503
77.2244,082,982217,900,167
108.3293,004,164438,338,580
48.1289,916,256272,900,000
27.2162,798,565200,600,000
137.2237,283,207301,700,000
SELECT column, another_table_column, …
FROM mytable
INNER JOIN another_table 
    ON mytable.id = another_table.id
WHERE condition(s)
ORDER BY column, … ASC/DESC
LIMIT num_limit OFFSET num_offset;

Exercise 6 — Tasks

  • Find the domestic and international sales for each movie
  • Show the sales numbers for each movie that did better internationally rather than domestically
  • List all the movies by their ratings in descending order
-- Find the domestic and international sales for each movie
SELECT * FROM movies
INNER JOIN boxoffice
    ON movies.id = boxoffice.movie_id
 
-- Show the sales numbers for each movie that did better internationally rather than domestically
SELECT * FROM movies
INNER JOIN boxoffice
    ON movies.id = boxoffice.movie_id
WHERE international_sales >= Domestic_sales
 
-- List all the movies by their ratings in descending order
SELECT * FROM movies
INNER JOIN boxoffice
    ON movies.id = boxoffice.movie_id
ORDER BY rating DESC

SQL Lesson 7: OUTER JOINs