Weather Observation Station 14

  • + 0 comments

    For MySQL Platform

    In MySQL, there is separate funtion for truncating a decimal unlike ROUND function in other platforms. And that function is TRUNCATE

    SELECT TRUNCATE(MAX(lat_n), 4) FROM station
    WHERE lat_n < 137.2345;