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(column,'%Y-%m-%d') from myTable;