MYSQL implements the continuous sign-in function and starts from the beginning after one day of sign-in (sql statement)

MYSQL implements the continuous sign-in function and starts from the beginning after one day of sign-in (sql statement)

1. Create a test table

CREATE TABLE `testsign` ( 
 `userid` int(5) DEFAULT NULL, 
 `username` varchar(20) DEFAULT NULL, 
 `signtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 
 `type` int(1) DEFAULT '0' COMMENT '0 represents sign-in data, 1 represents sign-in date dictionary data' 
) ENGINE=InnoDB DEFAULT CHARSET=utf8

2. Insert test data. The sign-in time is from May 21 to June 5. It can be written live, but it is necessary to write a stored procedure. I am lazy. The focus should be on the code for getting the sign-in data, which is the third point. Haha

insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-21 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-22 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-23 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-24 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-25 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-26 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-27 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-28 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-29 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-30 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-05-31 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-06-01 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-06-02 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-06-03 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-06-04 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('72164','Dictionary','2017-06-05 00:00:00','1'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('800675','Wu Xiaoshuang sign-in data','2017-05-21 00:00:00','0'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('800675','Wu Xiaoshuang sign-in data','2017-05-22 00:00:00','0'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('800675','Wu Xiaoshuang sign-in data','2017-05-23 00:00:00','0'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('800675','Wu Xiaoshuang sign-in data','2017-05-24 00:00:00','0'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('800675','Wu Xiaoshuang sign-in data','2017-05-25 00:00:00','0'); 
insert into `testsign` (`userid`, `username`, `signtime`, `type`) values('800675','Wu Xiaoshuang sign-in data','2017-05-26 00:00:00','0');

3. Query continuous sign-in data

SELECT * FROM testsign WHERE TYPE=0 AND 
 DATE_FORMAT(signtime,'%Y%m%d')>( 
 SELECT IFNULL(MAX(DATE_FORMAT(signtime,'%Y%m%d')),"20170520") FROM testsign WHERE TYPE=1 
 AND DATE_FORMAT(signtime,'%Y%m%d')<=DATE_ADD(NOW(), INTERVAL -1 DAY) 
 AND DATE_FORMAT(signtime,'%Y%m%d') NOT IN ( 
    SELECT DATE_FORMAT(signtime,'%Y%m%d') FROM testsign WHERE TYPE=0 AND userid=800675 
    ) 
 ) 
 AND DATE_FORMAT(signtime,'%Y%m%d')<='20170605' 
 AND userid=800675

Uninterrupted data

Delete the data on the 23rd, and start counting from the 24th, and sign for three consecutive days

The above is the MYSQL implementation of the continuous sign-in function introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • SQLSERVER records the login time of the logged-in user (self-written script)
  • How to query the maximum number of consecutive login days between two dates in MySQL
  • How to query the maximum number of consecutive login days between two dates in MySQL
  • SQL query statement to find the number of consecutive login days of a user

<<:  A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

>>:  Detailed explanation of using scp command to copy files remotely in Linux

Recommend

Website Building Tutorial for Beginners: Learn to Build a Website in Ten Days

The 10-day tutorial uses the most understandable ...

Detailed explanation of creating and calling MySQL stored procedures

Table of contents Preface Stored Procedure: 1. Cr...

Summary of the dockerfile-maven-plugin usage guide

Table of contents pom configuration Setting.xml c...

How to remove carriage return characters from text in Linux

When the carriage return character ( Ctrl+M ) mak...

Detailed explanation of anonymous slots and named slots in Vue

Table of contents 1. Anonymous slots 2. Named slo...

Detailed explanation of Vue custom instructions

Table of contents Vue custom directive Custom dir...

How to convert JavaScript array into tree structure

1. Demand The backend provides such data for the ...

Detailed explanation of PHP+nginx service 500 502 error troubleshooting ideas

Overview When a 500 or 502 error occurs during ac...

JSONP cross-domain simulation Baidu search

Table of contents 1. What is JSONP 2. JSONP cross...

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

What are :is and :where? :is() and :where() are p...

VMware12 installs Ubuntu19.04 desktop version (installation tutorial)

1. Experimental description In the virtual machin...

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

Simple steps to configure Nginx reverse proxy with SSL

Preface A reverse proxy is a server that receives...

Practical method of deleting files from Linux command line

rm Command The rm command is a command that most ...