gpt4 book ai didi

php - 如何使用 php 和 mysql 从多个类别中检索最后更新的数据

转载 作者:行者123 更新时间:2023-11-29 15:02:35 25 4
gpt4 key购买 nike

如何使用 php 和 mysql 从多个类别中检索最后更新的数据。

例如:

类别表:

id categoryName
1 test1
2 test2
3 test3

产品表

id categoryId productName dateTime
1 1 product1 2010-05-06 10:00:37
2 1 product2 2010-05-06 10:10:41
3 2 product3 2010-05-06 10:20:53
4 2 product4 2010-05-06 10:22:44

现在,我的o/p应该是

id categoryId productName dateTime
2 1 product2 2010-05-06 10:10:41
4 2 product4 2010-05-06 10:22:44

如何使用 mysql 查询来完成此操作。

最佳答案

SELECT p.id, c.id, p.productName, p.dateTime
FROM Category c, Product p
WHERE c.id = p.categoryId
AND p.id = (SELECT id FROM Product WHERE categoryId = c.id ORDER BY dateTime DESC LIMIT 1)

关于php - 如何使用 php 和 mysql 从多个类别中检索最后更新的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2778926/

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