[SQL Zoo] SELECT from Nobel
1. Create a query that displays Nobel prizes for 1950 SELECT * FROM nobel WHERE yr = 1950 2. Show who won the 1962 prize for Literature SELECT winner FROM nobel WHERE yr = 1962 AND subject = 'Literature' 3. Show the year and subject that won 'Albert Einstein his prize SELECT yr, subject FROM nobel WHERE winner = 'Albert Einstein' 4. Give the name of the 'Peace' winners since the year 2000, inclu..
2021.12.28