使用 SQL Server 2008,我试图让其中一些列返回为 $xxx,xxx.xx
这是我正在使用的查询(这个查询然后一些更新只是为了计算数字并##tempshow
在最后选择)
SELECT
CASE GROUPING(s.StoreID) WHEN 1 THEN '' ELSE s.StoreID END [StoreID],
CASE GROUPING(p.VendorID) WHEN 1 THEN '' ELSE p.VendorID END [VendorID],
SUM(d.Quantity) AS [UnitSold],
CAST(SUM(d.amount * d.quantity) AS DECIMAL(18,2)) AS Amount,
CAST(SUM(d.Discount) AS DECIMAL(18,2)) AS Discount,
CAST(SUM((d.Amount * d.Quantity - d.Discount)) AS DECIMAL(18,2)) AS ExtSold,
CAST(SUM(d.Cost * d.Quantity) AS DECIMAL(18,2)) AS Cost,
CAST(0 AS DECIMAL(18,2)) AS Profit,
CAST(0 AS DECIMAL(18,2)) AS OnHand,
CAST(0 AS DECIMAL(18,2)) AS OnHandRetail,
CAST(0 AS DECIMAL(18,2)) AS OnHandCost,
CAST(0 AS DECIMAL(18,2)) AS ReceivedCost,
CAST(0 AS DECIMAL(18,2)) AS ReceivedRetail,
CAST(0 AS DECIMAL(18,2)) AS ReceivedQty,
CAST(0 AS DECIMAL(18,2)) AS Margin,
CAST(0 AS DECIMAL(12,2)) AS TurnOver,
CAST(0 AS INTEGER) AS OnOrder
INTO
##tempshow
FROM
RPTrs s,
RPTrsd d,
RPIv i,
RPProducts p
WHERE
s.ReceiptNO = d.ReceiptNO and
s.StoreID = d.StoreID and
i.UPC = d.UPC and
i.StoreID = d.StoreID and
p.ProductID = i.IVProduct and
s.StoreID = '01' and
s.TRSDate > GETDATE()-20 and
p.Service = 0
GROUP BY
GROUPING SETS((s.StoreID,p.VendorID),())
哪个返回:
我试过了
CAST(SUM(d.amount * d.quantity) AS MONEY) AS Amount,
和
SUM(CAST((d.amount * d.quantity) AS MONEY)) AS Amount,
预期输出(加上与此列相同的其他列Amount
):
|StoreID | VendorID | UnitSold | Amount
---------------------------------------------
1 | 01 | 0000 | 0 | $0.00
2 | 01 | am | 62 | $6,275.00
3 | 01 | AO | 58 | $18,964.00
4 | 01 | payless | 6 | $1,383.36
5 | | | 126 | $26,622.36
我需要Amount, Discount, ExtSold, Cost, Profit, OnHandRetail, OnHandCost, ReceivedCost, ReceivedRetail
采用货币格式