From d34e83503e93f29ec6d8eea39a2356995763b6cf Mon Sep 17 00:00:00 2001 From: Syed Saad Ul Kabir <64364672+ShinobiSaad@users.noreply.github.com> Date: Sun, 21 Nov 2021 15:57:25 +0600 Subject: [PATCH] single quote on the country code --- SQL/Select/revising_the_select_query_2.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQL/Select/revising_the_select_query_2.sql b/SQL/Select/revising_the_select_query_2.sql index 2b5a1d3..2fa1696 100644 --- a/SQL/Select/revising_the_select_query_2.sql +++ b/SQL/Select/revising_the_select_query_2.sql @@ -16,4 +16,4 @@ Query the names of all American cities in CITY with populations larger than 120, SELECT NAME FROM CITY -WHERE COUNTRYCODE = "USA" AND POPULATION > 120000; +WHERE COUNTRYCODE = 'USA' AND POPULATION > 120000;