search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

MySQL | DATEDIFF method

schedule Aug 10, 2023
Last updated
local_offer
MySQL
Tags
tocTable of Contents
expand_more
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

MySQL's DATEDIFF(~) method returns the days difference between two date or datetime values. (i.e. expr1 - expr2)

NOTE

Only the date portion of datetimes are used in the calculation.

Parameters

1. expr1 | date/datetime

A date/datetime to be subtracted from.

2. expr2 | date/datetime

A date/datetime to subtract.

Return value

The days difference between the input date/datetime values (expr1 - expr2).

Examples

Consider the following table about some students:

student_id

fname

lname

day_enrolled

age

username

1

Sky

Towner

2015-12-03

17

stowner1

2

Ben

Davis

2016-04-20

19

bdavis2

3

Travis

Apple

2018-08-14

18

tapple3

4

Arthur

David

2016-04-01

16

adavid4

5

Benjamin

Town

2014-01-01

17

btown5

The above sample table can be created using the code here.

Basic usage

To return number of days between today and date of enrollment of students:

SELECT fname, NOW(), DATEDIFF(NOW(), day_enrolled)
FROM students;
+----------+---------------------+-------------------------------+
| fname | NOW() | DATEDIFF(NOW(), day_enrolled) |
+----------+---------------------+-------------------------------+
| Sky | 2020-05-20 13:57:53 | 1630 |
| Ben | 2020-05-20 13:57:53 | 1491 |
| Travis | 2020-05-20 13:57:53 | 645 |
| Arthur | 2020-05-20 13:57:53 | 1510 |
| Benjamin | 2020-05-20 13:57:53 | 2331 |
+----------+---------------------+-------------------------------+

To return students who have been enrolled for more than 1500 days as of 16 April 2020:

SELECT fname, DATEDIFF('2020-04-16', day_enrolled)
FROM students
WHERE DATEDIFF('2020-04-16', day_enrolled) > 1500;
+----------+--------------------------------------+
| fname | DATEDIFF('2020-04-16', day_enrolled) |
+----------+--------------------------------------+
| Sky | 1596 |
| Benjamin | 2297 |
+----------+--------------------------------------+
robocat
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
1
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!