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

5 lines
247 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/* 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');