From 16b5f22d70dcdd296ec505fcd03a7a33794aaba1 Mon Sep 17 00:00:00 2001 From: shaijut Date: Fri, 13 Apr 2018 15:28:45 +0530 Subject: [PATCH] Updated SQL Zoo question Only Presidents Added 'Barack Obama' to Show all details of the presidential winners --- 3_solutions.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3_solutions.sql b/3_solutions.sql index 54f5c54..666243b 100644 --- a/3_solutions.sql +++ b/3_solutions.sql @@ -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');