Weather Observation Station 15

Sort by

recency

|

2043 Discussions

|

  • + 0 comments
    SELECT
        ROUND(LONG_W, 4)
    FROM
        STATION
    WHERE
        LAT_N < 137.2345
    ORDER BY
        LAT_N DESC
    LIMIT 1
    
  • + 1 comment
    SELECT
        ROUND(LONG_W, 4)
    FROM
        STATION
    WHERE
        LAT_N = (
                SELECT 
                    MAX(LAT_N) 
                 FROM 
                    STATION 
                 WHERE 
                    LAT_N < 137.2345
        )
    
  • + 0 comments

    MY SQL select round(long_w, 4) from station where lat_n < 137.2345 order by lat_n desc limit 1;

  • + 0 comments

    For MySQL

    SELECT ROUND(long_w, 4) FROM station
    WHERE lat_n = (SELECT MAX(lat_n) FROM station WHERE lat_n < 137.2345);
    
  • + 0 comments

    select round(long_w,4) from station where lat_n=( select max(lat_n) from station where lat_n<137.2345);