Is there a MySQL function which can be used to convert a Unix timestamp into a human readable date? I have one field where I save Unix times and now I want to add another field for human readable dates.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use from_unixtime:
|
|||
|
|
|
I think what you're looking for is |
|||
|
|
|
You can use the DATE_FORMAT function. Here's a page with examples, and the patterns you can use to select different date components. |
|||
|
|
|
Why bother saving the field as readable? Just us
EDIT: Sorry, we store everything in milliseconds not seconds. Fixed it. |
|||
|
|