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
3 changes: 2 additions & 1 deletion 3_solutions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ SELECT * FROM nobel WHERE subject = 'Literature' AND yr >= 1980 AND yr <= 1989;
--6. Show all details of the presidential winners

SELECT * FROM nobel
WHERE winner IN ('Theodore Roosevelt',
WHERE winner IN ('Barack Obama',
'Theodore Roosevelt',
'Woodrow Wilson',
'Jimmy Carter');

Expand Down