Algorithm
Problem Name: Sql -
In this HackerRank Functions in SQL problem solution,
Query a count of the number of cities in CITY having a Population larger than 100000.
.
Input Format
The CITY table is described as follows:
Code Examples
#1 Code Example with SQL
Code -
SQL
SELECT COUNT(*) FROM CITY
WHERE POPULATION > 100000;
Copy The Code &
Try With Live Editor