Jump to content

[SOLVED] SQL Query (convert dates)


Canman2005

Recommended Posts

Hi all

 

I have a database of 5,000 records and in each record is a field called 'dob' which has dates in it, the dates are stored as DD/MM/YYYY and I need to run a query on the database to convert all date records stored in 'dob' field to YYYY-MM-DD.

 

Can anyone help?

 

Thanks

 

Ed

Link to comment
Share on other sites

UPDATE tableName SET dob = CONCAT_WS('-',SUBSTRING(dob,7,4), SUBSTRING(dob,4,2), SUBSTRING(dob,1,2))

 

 

EDIT: FYI: I had never used CONCAT_WS or SUBSTRING in queries before. But it took me all of a few seconds to find them and the proper usage. I tested the above, so I know it works. But, to give a litttle explanation:

 

CONCAT_WS, will concatenate several strings using the first parameter as a separator. I then used SUBSTRING to make up the parts of dob to be concatenated. The first parameter is the start character and the 2nd parameter is the number of characters to get.

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.