Sunday, 24 March 2019

Revising Aggregations - The Count Function :- HackerRank SQL Solution in MYSQL

Problem:-

Query a count of the number of cities in CITY having a Population larger than .
Input Format
The CITY table is described as follows:

Solution:-

SELECT COUNT(*)
FROM City

WHERE Population > 100000;

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 ...