Mysql optimization techniques for querying dates based on time

Mysql optimization techniques for querying dates based on time

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 register_time field is of datetime type. To convert it to a date and then match it, you need to query all rows for filtering. The second way of writing can use the index created on the register_time field to make the query extremely fast!

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:
  • Python MySQL datetime formatting as parameter operations
  • Example analysis of interval calculation of mysql date and time
  • Summary of how to format MySQL timestamp as date using thinkphp5.1 framework
  • Summary of commonly used time, date and conversion functions in Mysql
  • mysql gets yesterday's date, today's date, tomorrow's date, and the time of the previous hour and the next hour
  • Analyze the selection problem of storing time and date types in MySQL
  • MySQL gets the current date and time function
  • How to query date and time in mysql

<<:  A brief discussion on several specifications of JS front-end modularization

>>:  How to mount a new disk on a Linux cloud server

Recommend

Do you know how to optimize loading web fonts?

Just as the title! The commonly used font-family l...

Mysql query database capacity method steps

Query the total size of all databases Here’s how:...

Common writing examples for MySQL and Oracle batch insert SQL

Table of contents For example: General writing: S...

Nest.js authorization verification method example

Table of contents 0x0 Introduction 0x1 RBAC Imple...

How to configure SSL for koa2 service

I. Introduction 1: SSL Certificate My domain name...

Several mistakes that JavaScript beginners often make

Table of contents Preface Confusing undefined and...

URL Rewrite Module 2.1 URL Rewrite Module Rule Writing

Table of contents Prerequisites Setting up a test...

How to update Ubuntu 20.04 LTS on Windows 10

April 23, 2020, Today, Ubuntu 20.04 on Windows al...

Vue sample code for online preview of office files

I'm working on electronic archives recently, ...

Super detailed MySQL usage specification sharing

Recently, there have been many database-related o...

Example analysis of the page splitting principle of MySQL clustered index

This article uses an example to illustrate the pa...