Jump to content

Mysql Date Conversion


timw

Recommended Posts

Yep worked a treat had to do a bit of tidying first as i had a few April's not in as Apr and Sept's not in as Sep

 

 

UPDATE table SET var_field = REPLACE(table.var_field,'April','Apr') WHERE table.var_field LIKE '%April%';

 

Then ran

 

UPDATE table SET date_field = STR_TO_DATE(var_field, '%b %e, %Y') WHERE id = id;

 

Thanks,

 

Tim

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.