HackerRank SQL Solution - Basic Select - Weather Observation Station 4

  • Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table.
  • The STATION table is described as follows:
HackerRank SQL Solution - Basic Select - Weather Observation Station 4
  • where LAT_N is the northern latitude and LONG_W is the western longitude.
  • For example, if there are three records in the table with CITY values 'New York', 'New York', 'Bengalaru', there are 2 different city names: 'New York' and 'Bengalaru'. The query returns 1, because
    • total number of records - number of unique city names = 3 - 2 = 1.
Solution:

/* Editor - MySQL */

select (count(city) - count(distinct(city))) from station;
Note: The problem statement is given by hackerrank.com but the solution is generated by the Geek4Tutorial admin. We highly recommend you solve this on your own, however, you can refer to this in case of help. If there is any concern regarding this post or website, please contact us using the contact form. Thank you!

No comments:

Post a Comment

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...