gpt4 book ai didi

SQL,根据分组选择的最小值从第二个表中获取值

转载 作者:行者123 更新时间:2023-12-03 03:52:39 25 4
gpt4 key购买 nike

我在下面有一个查询,我列出了所有尚未清空的交易,目标是获取包含所有打开的交易ID(代表客户订单)及其发票编号的列表。

Table 1
transactionID
bookdate
cost
year

Table 2
transactionID
invoice
year

SELECT 1.transactionID, Sum(cost), 1.Max(bookdate), 2.invoice
FROM 1
LEFT JOIN 2
ON 1.transactionID = 2. transactionID AND 1.year = 2.year
GROUP BY 1.transactionID, 2.invoice
HAVING (Sum(cost)<>0)

我的问题是 transactionID 每年都会重复使用,这就是为什么我需要检查实际 transactionID 与表 2 中的发票之间的年份是否对应。

每个 transactionID 都有多个具有不同预订日期的交易。这意味着一笔交易可能发生在 2011 年,另一笔交易可能发生在 2012 年。我希望查询查找与每个开放交易 ID 的最早预订日期相对应的年份。

例如:

表1

1 | 20120101 | -20  | 2012
2 | 20120501 | -100 | 2012
2 | 20110501 | 100 | 2012
1 | 20110801 | 50 | 2011

表2

1 | invoice X   | 2012
2 | invoice Y | 2012
1 | invoice old | 2011

结果应该是

1 | 30 USD | Invoice old

最佳答案

如果您使用的是 SQL Server 2005 或更高版本,则可以使用 window函数如下:

WITH summedAndRanked AS (
SELECT
[1].transactionID,
[2].invoice,
totalCost = SUM(cost) OVER (PARTITION BY [1].transactionID),
lastBookDate = MAX(bookdate) OVER (PARTITION BY [1].transactionID),
rnk = DENSE_RANK() OVER (PARTITION BY [1].transactionID ORDER BY [1].year),
FROM [1]
LEFT JOIN [2]
ON [1].transactionID = [2].transactionID
AND [1].year = [2].year
)
SELECT DISTINCT
TransactionID,
totalCost,
lastBookDate,
invoice
FROM countedAndRanked
WHERE totalCost <> 0
AND rnk = 1
;

关于SQL,根据分组选择的最小值从第二个表中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12279624/

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