MySQL
https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true
SELECT *
FROM city
WHERE population > 100000
AND countrycode = 'USA'
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true
SELECT name
FROM city
WHERE population > 120000
AND countrycode = 'USA'
https://www.hackerrank.com/challenges/select-all-sql/problem?isFullScreen=true
SELECT *
FROM city
https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true
SELECT *
FROM city
WHERE id = 1661
https://www.hackerrank.com/challenges/japanese-cities-attributes/problem?isFullScreen=true
SELECT *
FROM city
WHERE countrycode = 'JPN'
https://www.hackerrank.com/challenges/japanese-cities-name/problem?isFullScreen=true
SELECT name
FROM city
WHERE countrycode = 'JPN'
easy!