Navbar menu

HackerRank SQL Solution - Basic Select - Revising the Select Query I

  • 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:
HackerRank SQL Solution - Basic Select - Revising the Select Query I
Solution:
 
/* Editor - MySQL */

select * from city where population > 100000 and countrycode ='USA';
Note: The problem statement is given by hackerrank.com but the solution is generated by the Geek4Tutorial admin. We highly recommend you solve this on your own, however, you can refer to this in case of help. If there is any concern regarding this post or website, please contact us using the contact form. Thank you!

No comments:

Post a Comment