Complex joins

Applying SQL to Real-World Problems

Dmitriy (Dima) Gorenshteyn

Lead Data Scientist, Memorial Sloan Kettering Cancer Center

A complex question

 

How many videos were rented in each city?

 
 
popcorn

Applying SQL to Real-World Problems

Connecting the data

rental table

Applying SQL to Real-World Problems

Connecting the data

next table to be selected

Applying SQL to Real-World Problems

Connecting the data

rental table and address table

Applying SQL to Real-World Problems

Connecting the data

the missing table connecting rental and address

Applying SQL to Real-World Problems

Entity Relationship Diagram (ERD)

completed entity relationship diagram

Applying SQL to Real-World Problems

Tools for finding your data

-- LIMIT your results
SELECT * 
FROM ___ 
LIMIT 10;
-- List the tables you have
SELECT * 
FROM pg_catalog.pg_tables
WHERE schemaname = 'public';
-- Explore tables & columns using your new VIEW
SELECT * FROM table_columns;
Applying SQL to Real-World Problems

Your turn!

Applying SQL to Real-World Problems

Preparing Video For Download...