I started studying SQL from a very famous site - HackerRank. Here I will try to provide multiple approaches & solutions to the same problem. It will help you learn and understand SQL in a better way.
Please make use of my blog posts for learning purpose only and feel free to ask your questions in the comment box below in case of any doubt.
Click Here for the previous blog-post in the series.
Recommended SQL Courses:
SQL Problem Statement:
Query the Western Longitude (LONG_W) for the largest Northern Latitude (LAT_N) in STATION that is less than 137.2345. Round your answer to 4 decimal places.
Input Format:
The STATION table is described as follows:
Table: STATION |
Sample data in Table (STATION):
Solution: Using ROUND & MAX Function (MySQL Query):
NOTE:
- ROUND Function is used to round the decimal numbers up to mentioned length after the decimal point. Here, 4 is passed because we want output scale up to 4 decimal points.
Eg.
ROUND(2.7685, 2) will return 2.77
ROUND(2.3327, 0) will return 2.33 - MAX is an aggregation function used to get the largest (maximum) value of all the records in the column name passed to the function.
Expected Output:
--------------------------------------------------------------------------------
Click here to see solutions for all Machine Learning Coursera Assignments.
&
Click here to see more codes for Raspberry Pi 3 and similar Family.
&
Click here to see more codes for NodeMCU ESP8266 and similar Family.
&
Click here to see more codes for Arduino Mega (ATMega 2560) and similar Family.
Feel free to ask doubts in the comment section. I will try my best to answer it.
If you find this helpful by any mean like, comment and share the post.
This is the simplest way to encourage me to keep doing such work.
Thanks & Regards,
-Akshay P Daga