Algorithm


Problem Name: Sql - Weather Observation Station 1

Problem Link: https://www.hackerrank.com/challenges/weather-observation-station-1/problem?isFullScreen=true

In this HackerRank Functions in SQL problem solution,

Query a list of CITY and STATE from the STATION table.
The STATION table is described as follows:

where LAT_N is the northern latitude and LONG_W is the western longitude.

 

 

Code Examples

#1 Code Example with SQL

Code - SQL


SELECT CITY, STATE FROM STATION;
Copy The Code & Try With Live Editor
Advertisements

Demonstration


Previous
[Solved] Japanese Cities' Names in SQL solution in Hackerrank
Next
[Solved] Weather Observation Station 3 in SQL solution in Hackerrank