字段A
1093.1760
1093.1710
1093.1730
1093.1750
我想update后变成
字段A
1093.1800
1093.1700
1093.1700
1093.1800
这语句怎么写 ?完全没有思路,求各位大神指点!!!在线等
------解决方案--------------------
select cast(cast(col as decimal(18,2)) as decimal(18,4))
from tb
------解决方案--------------------
错了
是 select round(字段A ,2)