Quote:
Originally Posted by Sadikb
The dates are in unixtimestamp format. This will give you the actual date of the files
Code:
select FROM_UNIXTIME(dateadded) from YOUR_PREFIX_dl2_files
To update , you can use
Code:
update YOUR_PREFIX_dl2_files set dateadded = UNIX_TIMESTAMP ('YYYY-MM-DD') where id = 'xx'
Hope this helps...
|
I'm not sure where to change the
Code:
...dateadded = UNIX TIMESTAMP...
- but now I know unixtimestamp is the format. That helps a great deal. Thanks.