programming-examples/sql/RetrieveFromTables/Write a SQL query to display the year and subject that won 'Dennis Gabor' his prize.sql

3 lines
76 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
SELECT year, subject
FROM nobel_win
WHERE winner = 'Dennis Gabor';