Show comma instead of point as decimal separator

前端 未结 5 1433
孤城傲影
孤城傲影 2020-12-31 15:30

I just want to get the right number format here in germany, so i need to show commas as decimal separator instead of points. But this...

DECLARE @euros money         


        
5条回答
  •  南方客
    南方客 (楼主)
    2020-12-31 16:11

    You can first replace thousand separator comma(,) to a Zero length string (''), and then you can replace Decimal('.') to comma(',') in the same select statement.

提交回复
热议问题