select winner from nobel
where yr=1962and subject='Literature'
select yr,subject from nobel
where winner='Albert Einstein'
select winner from nobel
where subject='Peace'and yr>=2000
select yr,subject,winner from nobel
where subject='Literature'and yr between1980and1989select*from nobel
where subject='Literature'and yr between1980and1989
SELECT*FROM nobel
WHERE winner IN('Theodore Roosevelt','Woodrow Wilson','Jimmy Carter')
SELECT winner FROM nobel
WHERE winner like'John%'
SELECT*FROM nobel
WHERE(yr=1980and subject='physics')or(yr=1984and subject='chemistry')
SELECT*FROM nobel
WHERE subject notin('Chemistry','Medicine')and yr=1980
SELECT*FROM nobel
WHERE( yr <1910and subject='Medicine')or(yr >=2004and subject='Literature')
SELECT*FROM nobel
WHERE winner ='PETER GRÜNBERG'
select*from nobel
where winner='EUGENE O''NEILL'
select winner,yr,subject from nobel
where winner like'Sir%'orderby yr desc,winner
SELECT winner, subject
FROM nobel
WHERE yr=1984ORDERBY subject in('Chemistry','Physics'),subject,winner