Last active
July 31, 2019 08:48
-
-
Save DaysJan/db47587f7324e05fcce717fbead64b55 to your computer and use it in GitHub Desktop.
mysql cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_unix-timestamp | |
| SELECT UNIX_TIMESTAMP('2015-11-13 10:20:19'); | |
| -- -> 1447431619 | |
| -- https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_from-unixtime | |
| SELECT FROM_UNIXTIME(1447430881, '%Y-%m-%d %H:%i:%s'); | |
| -- -> '2015-11-13 10:08:01' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment