programming-examples/sql/RetrieveFromTables/Write a SQL query to show all details of the Prime Ministerial winners after 1972 of Menachem Begin and Yitzhak Rabin.sql
2019-11-18 14:05:53 +01:00

5 lines
247 B
SQL

/* Write a SQL query to show all details of the Prime Ministerial winners after 1972 of Menachem Begin and Yitzhak Rabin.*/
SELECT * FROM nobel_win
WHERE year >1972
AND winner IN ('Menachem Begin',
'Yitzhak Rabin');