You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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');