Sunday, September 11, 2022

HackerRank: SQL Basic Select All

Question:

Query all columns (attributes) for every row in the CITY table.


The CITY table is described as follows:





Ans:

SELECT ID, NAME, COUNTRYCODE, DISTRICT, POPULATION FROM CITY;

No comments:

Post a Comment