Hi I have a mysql table that looks like so:
date time
2009-07-31 02:30
2009-07-31 02:45
2009-07-31 03:00
'date' column is a date field and 'time' column is a text field.
I would like to, using mysql only, merge these into a third column, 'datetime' which is a timestamp field.
So the end result would look like this:
date time datetime
2009-07-31 02:30 2009-07-31 02:30
2009-07-31 02:45 2009-07-31 02:45
2009-07-31 03:00 2009-07-31 03:00
Not sure how to go about this. Any suggestions?