gpt4 book ai didi

mysql - 如何删除mysql中数字中多余的零?

转载 作者:行者123 更新时间:2023-11-29 21:05:48 27 4
gpt4 key购买 nike

比如我输入数字,它会输入格式数字。

if I input 0010,it return 10;
if I input 0.0200,it return 0.02;
if I input 0.10,it return 0.1;

我尝试使用此代码,但它不起作用。我可以定义一个函数或存储过程来封装此业务功能吗?

select rtrim(00.40)

最佳答案

TRIM() + 0 可以做到这一点:

select trim(0010)+0, trim(0.0200)+0, trim(0.10)+0 from dual

输出:

+--------------+----------------+--------------+
| trim(0010)+0 | trim(0.0200)+0 | trim(0.10)+0 |
+--------------+----------------+--------------+
| 10 | 0.02 | 0.1 |
+--------------+----------------+--------------+
1 row in set

关于mysql - 如何删除mysql中数字中多余的零?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36833859/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com