gpt4 book ai didi

mysql - 使用 MAX 命令返回上次订购的产品。 SQL

转载 作者:行者123 更新时间:2023-11-29 12:43:38 25 4
gpt4 key购买 nike

目前我有以下结果集。

StockMovementDate       ProductId    TransactionReference
2014-01-09 00:00:03 1324 SO56777
2014-01-09 00:00:02 1324 PSA12556
2014-01-09 00:00:01 1324 NSA637
2014-01-06 00:00:01 1325 SO56774
2014-01-05 00:00:03 1324 NSA623
2014-01-05 00:00:02 1326 NSA622
2014-01-05 00:00:01 1326 SO56771

我将如何接收最新的 StockMovementDate,以及相关的 ProductId 和 TransactionReference?

StockMovementDate       ProductId    TransactionReference
2014-01-09 00:00:03 1324 SO56777
2014-01-06 00:00:01 1325 SO56774
2014-01-05 00:00:02 1326 NSA622

如果我使用 MAX,那么它没有什么区别,因为 TransactionReference 是唯一的,它仍然会带回整个列表。

select 
transactionheader.TransactionDate as StockMovementDate,
product.id as ProductId,
transactionheader.reference
from
transactionheader left outer join
transactionline on transactionline.transactionheaderid = transactionheader.id left outer join
product on transactionline.productid = product.id

最佳答案

这是一种方法:

SELECT A.*
FROM YourTable A
INNER JOIN (SELECT ProductId, MAX(StockMovementDate) StockMovementDate
FROM YourTable
GROUP BY ProductId) B
ON A.ProductId = B.ProductId
AND A.StockMovementDate = B.StockMovementDate

关于mysql - 使用 MAX 命令返回上次订购的产品。 SQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25765856/

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