Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 594 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 594 Bytes

CS50SQL_ex2

SQL query exercises

SELECT birth FROM people WHERE name='Jerry Seinfeld'; 1954

SELECT COUNT(*) FROM ratings WHERE rating = 10; 27

SELECT genre FROM genres WHERE show_id = (SELECT id FROM shows WHERE title='The Crown'); drama, history

SELECT name FROM people WHERE id= (SELECT person_id FROM writers WHERE show_id= (SELECT id FROM shows WHERE title='Arrested Development')); Mitchell Hurwitz

SELECT title FROM shows WHERE id= (SELECT show_id FROM stars WHERE person_id= (SELECT id FROM people WHERE name='Allison Janney')); Morton & Hayes