MySQL date and time addition and subtraction sample code

MySQL date and time addition and subtraction sample code

I was reviewing MySQL recently and happened to see MySQL date and time. I will leave a note for myself and share it with you.

  • now (); Current specific date and time
  • curdate(); Current date
  • curtime(); Current time

1.MySQL adds or subtracts a time interval

Set the current date variable

set @dt = now(); //Set the current date select @dt; //Query variable value 

Adding and subtracting a time interval functions date_add() and date_sub()

date_add('a certain date and time', interval 1 time type name);

Example:

select date_add(@dt, interval 1 year); //add 1 yearselect date_add(@dt, interval 1 month); //add 1 month

quarter: quarter, week: week, day: day, hour: hour, minuter: minute, second: second, microsecond: millisecond

Note: You can also add or subtract a time directly without using variables, such as: select date_add('1998-01-01', interval 1 day);

2. Subtract dates

datediff(date1,date2): Subtract two dates, date1 minus date2 to get the number of days after the subtraction

timediff(time1, time2): Subtract time1 from time2 and return the difference.


select timediff('2019-06-03 12:30:00', '2019-06-03 12:29:30');

Equivalent to

select timediff('12:30:00', '12:29:30');

This is the end of this article about sample code for MySQL date and time addition and subtraction. For more information about MySQL date and time addition and subtraction, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of MySQL date addition and subtraction functions

<<:  HTML form value transfer example through get method

>>:  Detailed process of installing the docker plugin in IntelliJ IDEA (2018 version)

Recommend

How Database SQL SELECT Queries Work

As Web developers, although we are not profession...

Example of implementing dynamic verification code on a page using JavaScript

introduction: Nowadays, many dynamic verification...

Summary of 7 pitfalls when using react

Table of contents 1. Component bloat 2. Change th...

How to create, save, and load Docker images

There are three ways to create an image: creating...

Docker memory monitoring and stress testing methods

The Docker container that has been running shows ...

Solution for front-end browser font size less than 12px

Preface When I was working on a project recently,...

Two ways to implement HTML page click download file

1. Use the <a> tag to complete <a href=&...

XHTML: Frame structure tag

Frame structure tag <frameset></frameset...

The background color or image inside the div container grows as it grows

Copy code The code is as follows: height:auto !im...

CSS naming conventions (rules) worth collecting Commonly used CSS naming rules

CSS naming conventions (rules) Commonly used CSS ...

Bug of Chinese input garbled characters in flex program Firefox

Chinese characters cannot be input in lower versio...

Detailed explanation of asynchronous programming knowledge points in nodejs

Introduction Because JavaScript is single-threade...

The difference between html empty link href="#" and href="javascript:void(0)"

# contains a location information. The default anc...

React realizes the whole process of page watermark effect

Table of contents Preface 1. Usage examples 2. Im...

MYSQL uses Union to merge the data of two tables and display them

Using the UNION Operator union : Used to connect ...