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

Difference between DATETIME and TIMESTAMP in MySQL

schedule Aug 12, 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 DATETIME and TIMESTAMP data types are very similar in that both are used to store date and time information, however, each data type does have its own advantages which are discussed below.

TIMESTAMP

  • The TIMESTAMP type in MySQL is often used to track changes to records such as keeping track of the last modified time of a record.

  • This is possible by setting a column to auto-update.

  • The reason the TIMESTAMP type is suited for this is because everything is stored in UTC (Coordinated Universal Time), which allows for tracing back to a single point in time.

DATETIME

  • The DATETIME type does not necessarily allow us to trace back to a single point in time as we do not necessarily know the timezone for the DATETIME value.

  • However, the advantage of the DATETIME type is that the supported range of values '1000-01-01 00:00:00' to '9999-12-31 23:59:59' is much larger than that of TIMESTAMP '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC.

  • This makes it more suited for storing date and time information that is likely to fall outside the range of TIMESTAMP (e.g. storage of Date of Birth information).

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
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!