The conversion between time, string and timestamp is commonly used in daily life. Although it is commonly used, I like to search for the usage almost every time I use it. This article will serve as a note to organize the conversion between the three (i.e.: date to string, date to timestamp, string to date, string to timestamp, timestamp to date, timestamp to string) for easy reference in the future; Functions involved date_format(date, format) function, MySQL date formatting function date_format() unix_timestamp() Function str_to_date(str, format) function from_unixtime(unix_timestamp, format) function, MySQL timestamp formatting function from_unixtime Time to string select date_format(now(), '%Y-%m-%d'); #Result: 2016-01-05 Time to timestamp select unix_timestamp(now()); # Result: 1452001082 String to time select str_to_date('2016-01-02', '%Y-%m-%d %H'); #Result: 2016-01-02 00:00:00 Convert string to timestamp select unix_timestamp('2016-01-02'); # Result: 1451664000 Timestamp to time select from_unixtime(1451997924); #Result: 2016-01-05 20:45:24 Timestamp to string select from_unixtime(1451997924,'%Y-%d'); //Result: 2016-01-05 20:45:24 Schedule MySQL date format value range.
The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: In-depth understanding of uid and gid in docker containers
>>: Tutorial on installing mysql5.7.17 via yum on redhat7
How to uninstall MySQL database under Linux? The ...
1. Idea It only took 6 seconds to insert 1,000,00...
Table of contents 1. Background 2. Verification p...
Table of contents Listener watch Format Set up th...
Template 1: login.vue <template> <p clas...
[Solution 1: padding implementation] principle: I...
After reading the following article, you can depl...
Table of contents 1. Demand 2. Database Design 3....
Click here to return to the 123WORDPRESS.COM HTML ...
When learning about inline-block, I found that the...
In order to facilitate the storage and access of ...
Lambda Expressions Lambda expressions, also known...
1 Download MySQL Download address: http://downloa...
0. When I made this document, it was around Decem...
Mixin method: The browser cannot compile: The old...