Skip to content

Instantly share code, notes, and snippets.

View Sarmsuding's full-sized avatar

Samsudeen Akanni Sarmsuding

View GitHub Profile
@Sarmsuding
Sarmsuding / HackerRank_Basic_Select_Challenges
Created May 15, 2025 16:05
Hacker Rank Basic Practice Queries
/*Query all columns for all American cities in the CITY table with populations larger than 100000.The CountryCode for America is USA.*/
select * from city
where countrycode = 'USA' and population >100000;
/*Query the NAME field for all American cities in the CITY table with populations larger than 120000. The CountryCode for America is USA.*/
select name from city
where population > 120000 and countrycode = 'USA';