Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions SQL Deep Dive/Distinct/questions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Question: What unique titles do we have?
*/

SELECT * FROM titles;
SELECT DISTINCT title
FROM titles


/*
Expand All @@ -13,14 +14,15 @@ SELECT * FROM titles;
* Question: How many unique birth dates are there?
*/

SELECT * FROM employees;
SELECT DISTINCT count( birth_date )
FROM employees

/*
* DB: World
* Table: country
* Question: Can I get a list of distinct life expectancy ages
* Make sure there are no nulls
*/

SELECT * FROM country;

SELECT DISTINCT lifeexpectancy FROM country
WHERE lifeexpectancy IS NOT NULL
ORDER BY lifeexpectancy;