Weather Observation Station 15

  • + 0 comments

    so basically we order all the values of lat_n in descending order that are less than 137.2345 and then by writing limit 1 we specify that we need the maximum or the largest value of lat_n that is less than 137.2345. SELECT TRUNCATE(LAT_N,4) FROM STATION WHERE LAT_N < 137.2345 ORDER BY LAT_N DESC LIMIT 1;