Función MySQL TRUNCATE()
Ejemplo
Devuelve un número truncado a 2 decimales:
SELECT TRUNCATE(135.375, 2);
Definición y uso
La función TRUNCATE() trunca un número al número especificado de lugares decimales.
Nota: Vea también las funciones FLOOR() , CEIL() , CEILING() y ROUND() .
Sintaxis
TRUNCATE(number, decimals)
Valores paramétricos
Parameter | Description |
---|---|
number | Required. The number to be truncated |
decimals | Required. The number of decimal places to truncate to |
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|
Más ejemplos
Ejemplo
Devuelve un número truncado a 0 decimales:
SELECT TRUNCATE(345.156,
0);