diff --git a/select-from-nobel.sql b/select-from-nobel.sql index 9e15cba..2ac12c9 100644 --- a/select-from-nobel.sql +++ b/select-from-nobel.sql @@ -68,7 +68,7 @@ Show the Physics winners for 1980 together with the Chemistry winners for 1984. */ SELECT * FROM nobel -WHERE (subject = "Physics" AND yr = '1980') OR (subject = 'Chemistry' AND yr = 1984) +WHERE (subject = 'Physics' AND yr = '1980') OR (subject = 'Chemistry' AND yr = 1984) --#9 /*