gpt4 book ai didi

mysql - 创建查询以检索 Mysql 中的某些行

转载 作者:行者123 更新时间:2023-11-29 09:19:50 26 4
gpt4 key购买 nike

我有一个订单表,其架构如下。

CREATE TABLE orders (
order_id int NOT NULL AUTO_INCREMENT,
customer_id int unsigned NOT NULL DEFAULT 0,
order_date int NOT NULL
)

我正在尝试检索每个客户最近订单的列表。该表可以有一个客户的多个订单,每个订单都有一个主键order_id。

最佳答案

select o.*
from (
select customer_id, max(order_date) as MaxOrderDate
from orders
group by customer_id
) om
inner join order o on om.customer_id = o.customer_id and om.MaxOrderDate = m.order_date

关于mysql - 创建查询以检索 Mysql 中的某些行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2411866/

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