mysql determines whether the current time is between the start and end time and the start and end time are allowed to be empty

mysql determines whether the current time is between the start and end time and the start and end time are allowed to be empty

Requirement: Query ongoing activity data

There are several situations in progress:
1. If the start time is empty and the end time is empty, the result data will always be in progress.
2. If the start time is empty and the end time is not empty, the current time is before the end time and is in progress data
3. If the start time is not empty and the end time is empty, the current time is after the start time and is in progress data
4. If the start time is not empty and the end time is not empty, the data within the start and end time period is the ongoing data.

The following SQL query is the result set that meets the above four requirements, meeting the title requirements

SELECT * FROM 
Table name WHERE 1=1 
and(start_time is null or start_time<now()) 
and(end_time is null or end_time>now())

Mybatis writing method, the start time and end time input parameters are allowed to be empty as shown in the figure:

insert image description here

<if test="record.startDate != null and record.startDate != '' or record.endDate != null and record.endDate != '' ">
      AND id in
      (select id from rht_product_price where 1=1
      <if test="record.startDate != null and record.startDate != ''">
        and start_date &lt;= #{record.startDate,jdbcType=VARCHAR}
      </if>
      <if test="record.endDate!= null and record.endDate != ''">
        and end_date &gt;= #{record.endDate,jdbcType=VARCHAR}
      </if>
      )
    </if>

This is the end of this article about MySQL judging whether the current time is between the start and end time and the start and end time are allowed to be empty. For more relevant information about MySQL judging whether the current time is between the start and end time, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Analyze the method of setting the current time as the default value in MySQL
  • Get the current system time and date in MySQL to facilitate query and judgment code
  • Insert current time in php MYSQL

<<:  Example of using CSS filter to write mouse over effect

>>:  Ideas and codes for implementing iframe to intercept part of the website content

Recommend

Why can't I see the access interface for Docker Tomcat?

Question: Is the origin server unable to find a r...

Setting up shadowsocks+polipo global proxy in Linux environment

1. Install shadowsocks sudo apt-get install pytho...

Vue uses canvas handwriting input to recognize Chinese

Effect picture: Preface: Recently, I was working ...

How to monitor array changes in JavaScript

Preface When introducing defineProperty before, I...

MySQL cursor functions and usage

Table of contents definition The role of the curs...

Detailed analysis of the syntax of Mysql update to modify multiple fields and

When updating a record in MySQL, the syntax is co...

Teach you how to use Portainer to manage multiple Docker container environments

Table of contents Portainer manages multiple Dock...

Solution to invalid margin-top of elements in div tags

Just as the title says. The question is very stran...

A record of a Linux server intrusion emergency response (summary)

Recently, we received a request for help from a c...

Vue implements sending emoticons in chat box

The specific code for sending emoticons in the vu...

What is the file mysql-bin.000001 in mysql? Can it be deleted?

After installing MySQL using ports, I found that ...

Share the 15 best HTML/CSS design and development frameworks

Professional web design is complex and time-consu...

JavaScript explains the encapsulation and use of slow-motion animation

Implementing process analysis (1) How to call rep...

js returns to the previous page and refreshes the code

1. Javascript returns to the previous page history...