题解 | 查询订单

查询订单

https://www.nowcoder.com/practice/5ae7f48dc94f4a76b0ade40b70caf308

select t1.order_id,t1.customer_name,t1.order_date
from(
select orders.order_id ,customers.customer_name, 
orders.order_date,rank() over(partition by orders.customer_id 
order by orders.order_date desc) as paiming   
from orders
left join customers
using(customer_id)
) t1
where t1.paiming=1
;

开窗函数秒了

全部评论

相关推荐

最喜欢秋天的火龙果很...:第一份工作一定要往大的去,工资低点没事。后面换工作会更好找,即使你去小公司,你也不可能不会换工作的。所以找大的去
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务