To convert a unix timestamp to a user-readable format, mysql has a built-in function FROM_UNIXTIME (), first it takes 2 parameters, this is the timestamp you want to convert, and the second is the format you want to convert to in your case
FROM_UNIXTIME('1329944650', '%Y-%m-%d');
source share