I have a UNIX-type timestamp stored in an INT column in MySQL. What is the proper way to retrieve this as a MySQL DATETIME?
INT
DATETIME
(I found t
SELECT FROM_UNIXTIME(mycolumn) FROM mytable