数据库为db2
现在数据为 12.030000
想通过sql语句后得到 12.03
请高手解决!!
------解决方案--------------------------------------------------------
select round(12.030000,2)
------解决方案--------------------------------------------------------
values cast(round(12.03000,2) as decimal(18,2))
DB2里的round不截取,round(12.030000,2) = 12.030000
------解决方案--------------------------------------------------------
用CAST
------解决方案--------------------------------------------------------
------解决方案--------------------------------------------------------
用CAST.
------解决方案--------------------------------------------------------
cast很少用
values decimal(12.03000,18,2)
这个好像也行呀