From 7160fd952fc66399091cfc1e77f91d2d367aded6 Mon Sep 17 00:00:00 2001 From: Alexanderpmann <99506481+Alexanderpmann@users.noreply.github.com> Date: Fri, 25 Mar 2022 05:12:14 -0400 Subject: [PATCH] change double to single quotes change double quotes to single for physics on line 71. --- 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 /*