QUIZ

Query the greatest value of the Northern Latitudes (LAT_N) from STATION that is less than . Truncate your answer to  decimal places.

 

MY ANSWER

SELECT TRUNCATE(MAX(LAT_N),4)
FROM STATION
WHERE LAT_N < 137.2345

 

POINT

잘라야할 때는 TRUNCATE, 반올림 할때는 ROUND !

  • TRUCNTATE(자르고자 하는 것, 남길 자리수)
  • ROUND(반올림 하고자 하는 것, 남길 자리수)
 

+ Recent posts