programming-examples/sql/RetrieveFromTables/Write a SQL query to display the year and subject that won 'Dennis Gabor' his prize.sql
2019-11-18 14:05:53 +01:00

3 lines
76 B
SQL

SELECT year, subject
FROM nobel_win
WHERE winner = 'Dennis Gabor';