programming-examples/sql/RetrieveFromTables/Write a SQL query to show all the winners of nobel prize in the year 1970 except the subject Physiology and Economics.sql
2019-11-18 14:05:53 +01:00

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');