Saturday, 23 March 2019

Average Population:- HackerRank Solution in MYSQL

Problem:-

Query the average population for all cities in CITY, rounded down to the nearest integer.
Input Format
The CITY table is described as follows: 

Solution:-

SELECT ROUND(AVG(POPULATION),0)
FROM CITY

No comments:

Post a Comment

Error While embed the video in Your website page

Error:- Refused to display '<URL>' in a frame because it set 'X-Frame-Options' to 'sameorigin Solution:- if ...