列表

详情


SQL275. 牛客的课程订单分析(五)

描述

有很多同学在牛客购买课程来学习,购买会产生订单存到数据库里

有一个订单信息表(order_info),简况如下:

id user_id product_name
status
client_id
date
1 557336
C++
no_completed
1 2025-10-10
2 230173543
Python
completed
2 2025-10-12
3 57 JS
completed
3 2025-10-23
4 57 C++
completed
3 2025-10-23
5 557336
Java
completed
1 2025-10-23
6 57 Java
completed
1 2025-10-24
7 557336
C++
completed
1 2025-10-25
8 557336
Python
completed
1 2025-10-26

1行表示user_id557336的用户在2025-10-10的时候使用了client_id1的客户端下了C++课程的订单,但是状态为没有购买成功。

2行表示user_id230173543的用户在2025-10-12的时候使用了client_id2的客户端下了Python课程的订单,状态为购买成功。

......

最后1行表示user_id557336的用户在2025-10-26的时候使用了client_id1的客户端下了Python课程的订单,状态为购买成功。


请你写出一个sql语句查询在2025-10-15以后,如果有一个用户下单2个以及2个以上状态为购买成功的C++课程或Java课程或Python课程,那么输出这个用户的user_id以及满足前面条件的第一次购买成功的C++课程或Java课程或Python课程的日期first_buy_date以及满足前面条件的第二次购买成功的C++课程或Java课程或Python课程的日期second_buy_date,以及购买成功的C++课程或Java课程或Python课程的次数cnt,并且输出结果按照user_id升序排序,以上例子查询结果如下:

user_id first_buy_date second_buy_date cnt
57好 2025-10-23 2025-10-24 2
557336 2025-10-23 2025-10-25
3

解析:

id为46的订单满足以上条件,输出57id为4的订单为第一次购买成功,输出first_buy_date为2025-10-23,id为6的订单为第二次购买,输出second_buy_date为2025-10-24,总共成功购买了2;

id为578的订单满足以上条件,输出557336id为5的订单为第一次购买成功,输出first_buy_date为2025-10-23,id为7的订单为第二次购买,输出second_buy_date为2025-10-25,总共成功购买了3;

示例1

输入:

drop table if exists order_info;
CREATE TABLE order_info (
id int(4) NOT NULL,
user_id int(11) NOT NULL,
product_name varchar(256) NOT NULL,
status varchar(32) NOT NULL,
client_id int(4) NOT NULL,
date date NOT NULL,
PRIMARY KEY (id));

INSERT INTO order_info VALUES
(1,557336,'C++','no_completed',1,'2025-10-10'),
(2,230173543,'Python','completed',2,'2025-10-12'),
(3,57,'JS','completed',3,'2025-10-23'),
(4,57,'C++','completed',3,'2025-10-23'),
(5,557336,'Java','completed',1,'2025-10-23'),
(6,57,'Java','completed',1,'2025-10-24'),
(7,557336,'C++','completed',1,'2025-10-25'),
(8,557336,'Python','completed',1,'2025-10-26');

输出:

57|2025-10-23|2025-10-24|2
557336|2025-10-23|2025-10-25|3

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

Sqlite 解法, 执行用时: 9ms, 内存消耗: 3500KB, 提交时间: 2021-08-09

select user_id,min(date),
max(case when rk=2 then date end),
count(*) as cnt
from 
(select user_id,date,
rank() over(partition by user_id order by date asc) rk
from order_info
where date>'2025-10-15'
and status='completed'
and product_name in ('C++','Java','Python'))
group by user_id
having count(*)>=2
order by user_id

Sqlite 解法, 执行用时: 10ms, 内存消耗: 3712KB, 提交时间: 2021-09-07

with n as (
select*,rank() over(partition by user_id order by date asc) as dnum,count(*) over(partition by user_id) as cnt
from order_info
where date > '2025-10-15' and product_name in ('C++','Java','Python') and
status = 'completed'
)
select  user_id,min(date),max(date),cnt
from n
where cnt >= 2 and dnum <=2
group by user_id,cnt
order by user_id asc;

Sqlite 解法, 执行用时: 11ms, 内存消耗: 3600KB, 提交时间: 2021-09-14


select user_id,min(date), max(case when rn=2 then date else 0 end),count(1) from
        (select user_id,date,row_number()over(partition by user_id order by date) rn
        from order_info
        where date>'2025-10-15'and status='completed'and product_name in ('C++','Java','Python')) 
group by user_id 
having count(1)>1
order by  user_id

Sqlite 解法, 执行用时: 11ms, 内存消耗: 3604KB, 提交时间: 2021-09-10

select user_id
      ,max(case when r = 1 then date end) as first_buy_date
      ,min(case when r = 2 then date end) as second_buy_date
      ,count(user_id)                           as cnt
from ( 
    select *
          ,rank() over(partition by user_id order by date) as r
    from order_info
    where  status = 'completed'
    and date > '2025-10-15'
    and product_name in ('C++', 'Python', 'Java'))t
group by user_id
having count(user_id) >= 2

Sqlite 解法, 执行用时: 11ms, 内存消耗: 3604KB, 提交时间: 2021-09-08

select user_id,min(case when r = 1 then date end) as first_buy_date,min(case when r = 2 then date end) as second_buy_date,count(1) as cnt
from ( select *,rank() over(partition by user_id order by date) as r from order_info
where 1=1 and status = 'completed' and date > '2025-10-15' and product_name in ('C++', 'Python', 'Java'))t
group by user_id having count(1) >= 2 

上一题