I have a lot of rows in a MySQL database.
One of my columns is called date
, and holds dates with values like "May 25", "May 26", "May 27" etc.
I would then like to split the value into two so I have two new columns, like one called day and one called month.
How can this be done?
Thanks in advance