gpt4 book ai didi

mysql - 使用左连接的 SQL 查询从特定日期开始按降序获取行

转载 作者:行者123 更新时间:2023-11-29 07:46:34 25 4
gpt4 key购买 nike

我有两个表:

产品

productID, productName, productPrice

已购买

productID, creationDate

查询 - 返回自 6 月 2 日以来购买的独特产品列表,其中最昂贵的产品首先返回 >

为此,我编写了以下查询:

SELECT Product.productID,
Product.productName,
Product.productPrice,
Purchased.creationDate
FROM Product
LEFT JOIN Purchased
ON Product.productID = Purchased.productID
ORDER BY Product.productPrice DESC
WHERE Purchased.creationDate > 02 / 06 / 2014

请您确认一下上述书面查询是否正确,或者我是否做错了。

最佳答案

试试这个:

SELECT p.productID, p.productName, p.productPrice, pp.creationDate
FROM Product p
LEFT JOIN Purchased pp ON p.productID = pp.productID
WHERE pp.creationDate > '2014-06-02'
ORDER BY p.productPrice DESC;

关于mysql - 使用左连接的 SQL 查询从特定日期开始按降序获取行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27645102/

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