Skip to content

Instantly share code, notes, and snippets.

@DaysJan
Last active July 31, 2019 08:48
Show Gist options
  • Save DaysJan/db47587f7324e05fcce717fbead64b55 to your computer and use it in GitHub Desktop.
Save DaysJan/db47587f7324e05fcce717fbead64b55 to your computer and use it in GitHub Desktop.
mysql cheatsheet
-- 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