Lors du formatage d'un nombre à 2 décimales, vous avez deux options TRUNCATE
et ROUND
. Vous recherchez TRUNCATE
fonction.
Exemples :
Sans arrondi :
TRUNCATE(0.166, 2)
-- will be evaluated to 0.16
TRUNCATE(0.164, 2)
-- will be evaluated to 0.16
docs :http://www.w3resource.com/mysql /fonctions-mathematiques/mysql-truncate-function.php
Avec arrondi :
ROUND(0.166, 2)
-- will be evaluated to 0.17
ROUND(0.164, 2)
-- will be evaluated to 0.16
docs :http://www.w3resource.com/mysql /fonctions-mathematiques/mysql-round-function.php