For example, to query yesterday's newly registered users, there are two ways to write it: EXPLAIN select * from chess_user u where DATE_FORMAT(u.register_time,'%Y-%m-%d')='2018-01-25'; EXPLAIN select * from chess_user u where u.register_time BETWEEN '2018-01-25 00:00:00' and '2018-01-25 23:59:59'; The Attach date conversion function DECLARE yt varchar(10); #Yesterday DECLARE yt_bt varchar(19); #Yesterday's start time DECLARE yt_et varchar(19); #Yesterday's end time #Set variables SET yt=DATE_FORMAT(DATE_ADD(now(),INTERVAL -1 day),'%Y-%m-%d'); SET yt_bt=DATE_FORMAT(DATE_ADD(now(),INTERVAL -1 day),'%Y-%m-%d 00:00:00'); SET yt_et=DATE_FORMAT(DATE_ADD(now(),INTERVAL -1 day),'%Y-%m-%d 23:59:59'); Summarize The above is the optimization technique of Mysql querying date based on time 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:
|
<<: A brief discussion on several specifications of JS front-end modularization
>>: How to mount a new disk on a Linux cloud server
Just as the title! The commonly used font-family l...
Query the total size of all databases Here’s how:...
Table of contents For example: General writing: S...
Navicat reports errors 10060 and 1045 when connec...
Table of contents 0x0 Introduction 0x1 RBAC Imple...
I. Introduction 1: SSL Certificate My domain name...
Mainly from two aspects: 1. Highlight/Line Break ...
Table of contents Preface Confusing undefined and...
Table of contents Prerequisites Setting up a test...
1. Add the isolation marker: ip netns add fd 2. P...
April 23, 2020, Today, Ubuntu 20.04 on Windows al...
I'm working on electronic archives recently, ...
Recently, there have been many database-related o...
Due to the advantages of GTID, we need to change ...
This article uses an example to illustrate the pa...