第一种:
select convert(varchar,cast(_money AS MONEY),1) AS _money -----带小数点的
第二种:
select reverse(stuff(reverse(convert(varchar,convert(money,123000),1)),1,3,'')) ----不带小数点的
第一种:
select convert(varchar,cast(_money AS MONEY),1) AS _money -----带小数点的
第二种:
select reverse(stuff(reverse(convert(varchar,convert(money,123000),1)),1,3,'')) ----不带小数点的