SQL WHERE Exercises
Table - 'Noble' :
Problems :
Write a SQL query to display the Nobel prizes for 1971
Write a SQL query to know the winner of the 1970 prize for Literature.
Write a SQL query to display the year and subject that won 'Joseph Brodsky' his prize.
Write a SQL query to give the name of the 'Economics' winners since the year 1950.
Write a SQL query to Show all the details (year, subject, winner, country ) of the Literature prize winners between the year 1960 to 1971
Write a SQL query to show all the details of the winners with first name Robert.
Write a SQL query to show all the winners of nobel prize in the year 1970 except the subject Physiology and Economics.
Write a SQL query to find all the details of the nobel winners for the Winners not starting with the letter 'J' and arranged the list as the most recent comes first, then by name in order.
Select the data of the Winners who have character āsā in 3rd place in their name.
Write a SQL query to show all the details of the winners with country 'France' and 'Germany'.
Write a SQL to show all the winners of nobel prize in Economics who are from USA.
Last updated