MySQL TRUNCATE or ROUND with variable decimal leng

2019-09-02 05:32发布

I am not able to TRUNCATE (or round) a decimal on variable decimal lengh. Here's my MySQL query:

SELECT
TRUNCATE( `amount` , `decimal_length` ) AS truncated_decimal,
FROM table

-- sample data
amount    decimal length
123.123    0
456.456    1
789.789    2

--expected outcome
truncated_decimal
123
456.4
789.78

--current outcome (wrong)
truncated_decimal
123.123
456.456
789.789

My truncated_decimal variable is returned WITHOUT truncation, i.e. default decimal length from table. Same behavior with ROUND function. Variable decimal_length is an integer that is different for different rows in table.

Any ideas?

3条回答
啃猪蹄的小仙女
2楼-- · 2019-09-02 05:43

So the correct answer to get variable length decimals is to use FORMAT function:

SELECT
FORMAT( `amount` , `decimal_length` ) AS truncated_decimal,
FROM table

It does go with rounding, but at least you get needed variable length decimals.

查看更多
倾城 Initia
3楼-- · 2019-09-02 05:57
-- Example with a field name
SELECT
ROUND( `field_name` , 2 ) AS truncated_decimal
FROM table

-- Example with just a number
SELECT
ROUND( '285,1234' , 2 ) AS truncated_decimal

==> 285,12

You mix up truncate function with round function

Is this what you are looking for?

查看更多
三岁会撩人
4楼-- · 2019-09-02 06:06

Use Trim to remove trailing zero's

SELECT 
TRIM(TRAILING '0' FROM TRUNCATE( `amount` , `decimal_length` ))
FROM table
查看更多
登录 后发表回答