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.

9 lines
348 B
SQL

/* Write a SQL query to show the winners of a 'Physiology' prize in an early year before 1971 together with winners of
a 'Peace' prize in a later year on and after the 1974.*/
SELECT *
FROM nobel_win
WHERE (subject ='Physiology' AND year<1971)
UNION
SELECT *
FROM nobel_win
WHERE (subject ='Peace' AND year>=1974);