Create a tablecreate table order(id varchar(10),date datetime,orders varchar(10)); insert into orde values('1' , '2019/1/1',10 ) insert into orde values('1' , '2019/1/2',109 ) insert into orde values('1' , '2019/1/3',150 ) insert into orde values('1' , '2019/1/4',99) insert into orde values('1' , '2019/1/5',145) insert into orde values('1' , '2019/1/6',1455) insert into orde values('1' , '2019/1/7',199) insert into orde values('1' , '2019/1/8',188 ) insert into orde values('4' , '2019/1/1',10 ) insert into orde values('2' , '2019/1/2',109 ) insert into orde values('3' , '2019/1/3',150 ) insert into orde values('4' , '2019/1/4',99) insert into orde values('5' , '2019/1/5',145) insert into orde values('6' , '2019/1/6',1455) insert into orde values('7' , '2019/1/7',199) insert into orde values('8' , '2019/1/8',188 ) insert into orde values('9' , '2019/1/1',10 ) insert into orde values('9' , '2019/1/2',109 ) insert into orde values('9' , '2019/1/3',150 ) insert into orde values('9' , '2019/1/4',99) insert into orde values('9' , '2019/1/6',145) insert into orde values('9' , '2019/1/9',1455) insert into orde values('9' , '2019/1/10',199) insert into orde values('9' , '2019/1/13',188 ) IdeasGroup the table by id and rank by time, subtract the rank rnk from the time. If the time is continuous, the subtraction result is equal: select *,date-rankrnk from (select *,row_number() over(partition by id order by date) rankfrom orde) a; Then group by id, rnk, and count select id,rnk,count(*) ok from (select *,date-rankrnk from (select *,row_number() over(partition by id order by date) rankfrom orde) a) b group by id,rnk; The following table is obtained: Finally, filter the count items ok>=7. You can also filter directly: select id,rnk from (select *,date-rankrnk from (select *,row_number() over(partition by id order by date) rankfrom orde) a) b group by id,rnk having count(*)>=7; The above is the SQL query that the editor introduced to you for users who have placed orders for at least seven consecutive days. I hope it will be helpful to you. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: 5 basic skills of topic page design (Alibaba UED Shanmu)
>>: What are the new CSS :where and :is pseudo-class functions?
If you want to insert 5 records into table1, the ...
Of course, there are many people who hold the oppo...
1. Command Introduction The userdel (user delete)...
1.1 Copy the nginx installation package and insta...
Table of contents Creating an SSL Certificate 1. ...
Preface A classmate is investigating MLSQL Stack&...
Core code <!DOCTYPE html> <html lang=&qu...
For a long time, website development was hampered...
There are two ways to delete data in MySQL, one i...
This article describes how to compile and install...
Table of contents Component Communication Introdu...
HTML forms are used to collect different types of...
Table of contents A brief overview of the replica...
Table of contents index - General index - Unique ...
--When connecting to the database, the matching r...