We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a540b commit ec732caCopy full SHA for ec732ca
HackerRank/Solve SQL/2.Revising the Select Query II/solution.sql
@@ -4,4 +4,4 @@
4
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"
5
3. Type your code immediately after comment. Don't leave any blank line.
6
*/
7
-SELECT NAME FROM CITY WHERE COUNTRYCODEM = "USA" AND POPULATION > 120000;
+SELECT NAME FROM CITY WHERE COUNTRYCODE = "USA" AND POPULATION >120000;
0 commit comments