programming-examples/sql/RetrieveFromTables/Write a SQL query to show all the details (year, subject, winner, country ) of the Chemistry prize winners between the year 1965 to 1975 inclusive.sql

6 lines
282 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a SQL query to show all the details (year, subject, winner, country ) of the Chemistry
prize winners between the year 1965 to 1975 inclusive.*/
SELECT year, subject, winner, country
FROM nobel_win
WHERE subject = 'Chemistry'
AND year>=1965 AND year<=1975;