如下所示,前面少个0
SQL>select money from users where username =‘LEI‘;
money
---------
.3256
解决方法:
SQL>select to_char(money ,‘fm9999999990.00‘) from users where username =‘LEI‘;
money
---------
0.3256
时间: 2024-10-21 08:48:21
如下所示,前面少个0
SQL>select money from users where username =‘LEI‘;
money
---------
.3256
解决方法:
SQL>select to_char(money ,‘fm9999999990.00‘) from users where username =‘LEI‘;
money
---------
0.3256