From 5008e7010fdc32c1954c91b4fabff936efa3189b Mon Sep 17 00:00:00 2001 From: Apoorv Saxena <62635997+safierinx-a@users.noreply.github.com> Date: Thu, 20 Aug 2020 16:18:39 +0530 Subject: [PATCH] Changing to single quotes for Physics in q8 SQL doesn't use generally double quotes. --- select-from-nobel.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 /*