Open salcode opened 6 years ago
For example, I'm forever looking up how to display unix time stamp in human readable format in MySQL.
SELECT FROM_UNIXTIME(timestamp) FROM my_table;
FROM_UNIXTIME MySQL documentation
Get current Unix timestamp
var unixTimestamp = Math.round(new Date().getTime() / 1000);
For example, I'm forever looking up how to display unix time stamp in human readable format in MySQL.
FROM_UNIXTIME MySQL documentation