MySQL TRUNCATE() Function
The MySQL TRUNCATE() function returns a number truncated to the specified number of decimal places. If decimal_places is a negative number, this function will make digits to the left of the decimal place 0 values.
Syntax
TRUNCATE(number, decimal_places)
Parameters
number |
Required. Specify the number to truncate. |
decimal_places |
Required. Specify the number of decimal places truncate to. This value must be a positive or negative integer. |
Return Value
Returns the truncated value of the number to specified decimal_places.
Example 1:
The example below shows the usage of TRUNCATE() function.
mysql> SELECT TRUNCATE(1234.5678, 0); Result: 1234 mysql> SELECT TRUNCATE(1234.5678, 1); Result: 1234.5 mysql> SELECT TRUNCATE(1234.5678, 2); Result: 1234.56 mysql> SELECT TRUNCATE(1234.5678, 3); Result: 1234.567 mysql> SELECT TRUNCATE(1234.5678, -1); Result: 1230 mysql> SELECT TRUNCATE(1234.5678, -2); Result: 1200
Example 2:
Consider a database table called Sample with the following records:
Data | x |
---|---|
Data 1 | -3.75567 |
Data 2 | -5.3867 |
Data 3 | 13.9804 |
Data 4 | 93.1601 |
Data 5 | 48.1322 |
The statement given below can be used to truncate the records of column x to 2 decimal places.
SELECT *, TRUNCATE(x, 2) AS TRUNCATE_Value FROM Sample;
This will produce the result as shown below:
Data | x | TRUNCATE_Value |
---|---|---|
Data 1 | -3.75567 | -3.75 |
Data 2 | -5.3867 | -5.38 |
Data 3 | 13.9804 | 13.98 |
Data 4 | 93.1601 | 93.16 |
Data 5 | 48.1322 | 48.13 |
❮ MySQL Functions