Complex joins

Applicare SQL a problemi reali

Dmitriy (Dima) Gorenshteyn

Lead Data Scientist, Memorial Sloan Kettering Cancer Center

A complex question

 

How many videos were rented in each city?

 
 
popcorn

Applicare SQL a problemi reali

Connecting the data

rental table

Applicare SQL a problemi reali

Connecting the data

next table to be selected

Applicare SQL a problemi reali

Connecting the data

rental table and address table

Applicare SQL a problemi reali

Connecting the data

the missing table connecting rental and address

Applicare SQL a problemi reali

Entity Relationship Diagram (ERD)

completed entity relationship diagram

Applicare SQL a problemi reali

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;
Applicare SQL a problemi reali

Your turn!

Applicare SQL a problemi reali

Preparing Video For Download...