Algorithm
Problem Name: Sql -
In this HackerRank Functions in SQL problem solution,
Query the average population for all cities in CITY, rounded down to the nearest integer.
Input Format
The CITY table is described as follows:
Code Examples
#1 Code Example with SQL
Code -
SQL
SELECT FLOOR(AVG(POPULATION))
FROM CITY;
Copy The Code &
Try With Live Editor