我正在尝试通过 convert() 函数将数字字段转换为货币数据类型,但它不添加逗号。
使用这个:
convert(money, smlunitprice, 1) as smltotalprice
给我以下输出:
smltotalprice
---------------------
20980.00
8773.03
7122.81
7122.81
我已使用此(http://msdn.microsoft.com/en-us/library/ms187928(v=sql.90).aspx)作为参考,但这仅在从金钱转换为金钱时才有可能吗?从数字转换为货币时,还有另一种添加逗号的方法吗?
我正在使用 SSMS 访问 SQL Server 2000 DBMS。