MySQL : FLOOR function

The FLOOR function in MySQL is used to round down a decimal number.

Example :

SELECT FLOOR(12.84) AS Pembulatan;

result:

source:

MySQL : FLOOR function

Leave a Comment