SQL query for users who have placed orders for at least seven consecutive days

SQL query for users who have placed orders for at least seven consecutive days

Create a table

 create 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 )

Ideas

Group 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:
  • SQL query for users who log in continuously
  • SQL query method to implement users who have logged in for more than 7 days
  • SQL query statement to find the number of consecutive login days of a user
  • How to query the code of continuous date records in sqlserver

<<:  5 basic skills of topic page design (Alibaba UED Shanmu)

>>:  What are the new CSS :where and :is pseudo-class functions?

Recommend

Mysql uses insert to insert multiple records to add data in batches

If you want to insert 5 records into table1, the ...

960 Grid System Basic Principles and Usage

Of course, there are many people who hold the oppo...

Usage of Linux userdel command

1. Command Introduction The userdel (user delete)...

Sample code for batch deployment of Nginx with Ansible

1.1 Copy the nginx installation package and insta...

Create an SSL certificate that can be used in nginx and IIS

Table of contents Creating an SSL Certificate 1. ...

How MLSQL Stack makes stream debugging easier

Preface A classmate is investigating MLSQL Stack&...

Add unlimited fonts to your website with Google Web Fonts

For a long time, website development was hampered...

How to delete table data in MySQL

There are two ways to delete data in MySQL, one i...

How to compile and install PHP and Nginx in Ubuntu environment

This article describes how to compile and install...

Detailed explanation of React component communication

Table of contents Component Communication Introdu...

Detailed explanation of HTML form elements (Part 1)

HTML forms are used to collect different types of...

MySQL master-slave replication delay causes and solutions

Table of contents A brief overview of the replica...

Mysql index types and basic usage examples

Table of contents index - General index - Unique ...