Answers for "mysql get two decimal places with no round"

SQL
0

round one decimal place mysql

SELECT ROUND(20.555, 1);
-- 20.5
SELECT ROUND(20.5, 0);
-- 21
Posted by: Guest on November-25-2020

Code answers related to "mysql get two decimal places with no round"

Code answers related to "SQL"

Browse Popular Code Answers by Language