5 lines
228 B
SQL
5 lines
228 B
SQL
/* Write a SQL query to show all the winners of nobel prize in the year 1970 except the subject Physiology and Economics.*/
|
|
SELECT *
|
|
FROM nobel_win
|
|
WHERE year=1970
|
|
AND subject NOT IN('Physiology','Economics'); |