5 lines
228 B
MySQL
5 lines
228 B
MySQL
|
/* 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');
|