Query all columns for all American cities in CITY with populations larger than100000. The . CountryCode for America is USA.Input Format:Solution:select *from CITY where population> 100000 and countrycode='USA';#HackerRank #Codersarts #SQL #QuerySolution #SQLQUERYHELP