Revising the Select Query I || Hackerrank Solution

 Revising the Select Query I || Hackerrank Solution

Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA.

The CITY table is described as follows:

CITY.jpg



  • Solution:
select * from CITY where POPULATION>100000 and COUNTRYCODE='USA';

                               

🙏THANKS FOR VISIT🙏

Revising the Select Query I || Hackerrank Solution Revising the Select Query I || Hackerrank Solution Reviewed by CodexRitik on October 16, 2020 Rating: 5

No comments:

Powered by Blogger.