top of page
Forum Posts
Jitendra Kumar
May 05, 2020
In SQL Tutorial
Query a list of CITY and STATE from the STATION table. Input Format
The STATION table is described as follows: Solution: select CITY,STATE from STATION order by CITY,STATE;
0
0
415
Jitendra Kumar
May 05, 2020
In SQL Tutorial
Query all columns (attributes) for every row in the CITY table. Input Format Solution: select *from city;
0
0
165
Jitendra Kumar
May 05, 2020
In SQL Tutorial
Query the names of all American cities in CITY with populations larger than 120000. The CountryCode for America is USA. Input Format: Solution: select name from city where countrycode='USA' and population > 120000; #HackerRank #Query
0
0
346
Jitendra Kumar
May 05, 2020
In SQL Tutorial
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
0
0
71
Jitendra Kumar
More actions
bottom of page