Pick the code which shows theSelect the code that shows how many Chemistry awards were given between 1950 and 1960 name of winner's names beginning with C and ending in n
SELECT COUNT(subject) FROM nobel
 WHERE subject = 'Chemistry'
   AND yr BETWEEN 1950 and 1960
