我在sql中有一个字符串值,我需要将它变小并尽可能将其作为钱。
String value1 is : 104811140,00
String value2 is : 11229775,62
What i need to get is:
1: 104.811.140,00
2: 11.229.775,62
or
1: 104.811
2: 11.229
both are ok..
我该怎么做?提前致谢
答案 0 :(得分:0)
option1 = convert(varchar(20), convert(money, str), 1),
option2 = convert(varchar(20), floor(convert(money, str) / 1000), 1)