Bij het formatteren van getallen tot 2 decimalen heb je twee opties TRUNCATE
en ROUND
. U zoekt TRUNCATE
functie.
Voorbeelden:
Zonder afronding:
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 /mathematical-functions/mysql-truncate-function.php
Met afronding:
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 /mathematical-functions/mysql-round-function.php