Revising the Select Query II - Hacker Rank Solution

Revising the Select Query II



Problem :-

Query the names of all American cities in CITY with populations larger than 120000. The CountryCode for America is USA.

Input Format

Revising the Select Query II hacker rank sql
The CITY table is described as follows: 



Solution :-

SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION >120000;



Disclaimer :-
the hole problem statement are given by HackerRank.com but the solution are generated by the codeworld19 authority if any of the query regarding this post or website fill the following contact form thank you.

Next Post Previous Post
No Comment
Add Comment
comment url