Answers for "Pick the code that shows the amount of years where no Medicine awards were given"

0

Pick the code that shows the amount of years where no Medicine awards were given

SELECT COUNT(DISTINCT yr) FROM nobel
 WHERE yr NOT IN (SELECT DISTINCT yr FROM nobel WHERE subject = 'Medicine')
Posted by: Guest on September-29-2021

Code answers related to "Pick the code that shows the amount of years where no Medicine awards were given"

Browse Popular Code Answers by Language