gpt4 book ai didi

sql - 将 Currency 格式化为数百万美元 SQL Server

转载 作者:行者123 更新时间:2023-12-03 22:58:22 26 4
gpt4 key购买 nike

任何人都可以帮我将美元数据格式化为 SQL Server 的数百万美元吗?

3,000,000

--> $3M

我有这个,但它不起作用
SELECT     '$' + SUM(Sales_Information.Sales_in_Dollars / 1000000) 
AS [Sales in Millions]

这样做给了我#Error
format(SUM(Sales_Information.Sales_in_Dollars / 1000000)

最佳答案

FORMAT 函数有一种修剪数千的方法

每个逗号将显示值减少 1000

例如

select format(3000000,'$0,,,.000B')
select format(3000000,'$0,,M')
select format(3000000,'$0,K')

(请注意,我必须使用小数来表示 300 万(以十亿计))

输出:

$0.003B
$3M
$3000K

关于sql - 将 Currency 格式化为数百万美元 SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30112361/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com