Skip to content

Commit ec732ca

Browse files
Update solution.sql
1 parent a0a540b commit ec732ca

File tree

1 file changed

+1
-1
lines changed
  • HackerRank/Solve SQL/2.Revising the Select Query II

1 file changed

+1
-1
lines changed

HackerRank/Solve SQL/2.Revising the Select Query II/solution.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
2. The AS keyword causes errors, so follow this convention: "Select t.Field From table1 t" instead of "select t.Field From table1 AS t"
55
3. Type your code immediately after comment. Don't leave any blank line.
66
*/
7-
SELECT NAME FROM CITY WHERE COUNTRYCODEM = "USA" AND POPULATION > 120000;
7+
SELECT NAME FROM CITY WHERE COUNTRYCODE = "USA" AND POPULATION >120000;

0 commit comments

Comments
 (0)