Answers for "mysql unix timestamp to date"

SQL
1

mysql unix timestamp to date

SELECT FROM_UNIXTIME(1447430881); 
	# 2015-11-13 10:08:01
SELECT FROM_UNIXTIME(1632406597); 
	# 2021-09-23 16:16:37
SELECT FROM_UNIXTIME(1447430881,'%Y %D %M %h:%i:%s %x'); 
	# 2015 13th November 10:08:01 2015
Posted by: Guest on September-23-2021
0

mysql date format unix timestamp

SELECT
  FROM_UNIXTIME(timestamp) 
FROM 
  your_table;
Posted by: Guest on September-22-2020
0

sql convert unix time to date

select FROM_UNIXTIME(UNIX_TIMESTAMP(),'%a %b %d %H:%i:%s UTC %Y');
Posted by: Guest on July-16-2020

Code answers related to "mysql unix timestamp to date"

Code answers related to "SQL"

Browse Popular Code Answers by Language