Jump to content

How to convert a time stamp to a date in mysql


ballhogjoni

Recommended Posts

I want to convert my timestamp to the date of the timestamp. This is a date that is in my db 1209022076, the problem is that this doesn't show me a specific date.

 

Here is my query:

 

SELECT DISTINCT t_o.email, t_o.first_name, t_o.last_name, t_o.b_zip, t_o.date, t_o.fulfill_date

FROM travel_orders AS t_o JOIN travel_affiliates AS t_a ON t_o.affiliate_id = t_a.id JOIN travel_affiliate_platforms AS t_a_p ON t_a.affiliate_platform_id = t_a_p.id

WHERE t_a_p.id = 11

AND t_o.status IN ('new','printed', 'partially_charged', 'charged', 'filled', 'processed', 'held', 'charge_held')

AND t_o.email IS NOT null

AND t_o.email != '';

Link to comment
Share on other sites

It will if all you do is store it and print it.

 

But it's impossible to do less-than or greater-than comparisons, therefore you can't search on it or sort on it.

None of the MySQL or PHP date/time functions work with it so you can't reformat it or make use of the dozens of other functions (except MySQL STR_TO_DATE() which will change it to a usable format that you should be using in the first place)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.