MySQL格式化数字为金额类型

format(param, 2)  #返回的是货币样式,满三位会加一个逗号。

convert(param, decimal(12,2))

cast(param as decimal(12,2))

你可能感兴趣的:(MySQL格式化数字为金额类型)