Data-Driven Decision Making in SQL
Tim Verdonck
Professor Statistics and Data Science
SELECT title,
genre,
renting_price
FROM movies
WHERE renting_price > 2.8
UNION
SELECT title,
genre,
renting_price
FROM movies
WHERE genre = 'Action & Adventure';
SELECT title,
genre,
renting_price
FROM movies
WHERE renting_price > 2.8
UNION
SELECT title,
genre,
renting_price
FROM movies
WHERE genre = 'Action & Adventure';
| title | genre | renting_price |
|------------|--------------------|---------------|
|Fool's Gold | Action & Adventure | 2.69 |
|Astro Boy | Action & Adventure | 2.89 |
|Fair Game | Drama | 2.89 |
SELECT title,
genre,
renting_price
FROM movies
WHERE renting_price > 2.8
INTERSECT
SELECT title,
genre,
renting_price
FROM movies
WHERE genre = 'Action & Adventure';
| title | genre | renting_price |
|-----------|--------------------|---------------|
| Astro Boy | Action & Adventure | 2.89 |
Data-Driven Decision Making in SQL