Jump to content

change format


Alicia

Recommended Posts

Hi guys,

 

Anyone know a quick fix how I can change a column value from US datetime to UK in all records?

 

e.g : 25/12/2010 23:59:00 to 12/25/2010 in the database

Currently the var type for this column is varchar

 

Please advise.

 

 

Alicia

Link to comment
Share on other sites

The best thing to do is change the format to MySQL DATE format (yyyy-mm-dd) then you can take advantage of the dozens of built-in datetime functions and it also allows you to compare and sort the dates correctly. Store dates for functionality in the DB, not for prettiness.

 

Add a date column, type DATE and run an UPDATE query using mysql's STR_TO_DATE function to convert from your format.

Link to comment
Share on other sites

If I need the time as well so shall I use datetime?

 

so what you recommended is I add a new column with datetime format, then use str to datetime function to convert the value and update the generated value into the newlly added column?

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.