I have the following data (this is a slice of 4000 records):
--------------------------------+
| google_location_hours |
+---------------------------------------------------------------------------------------------------------+
| 11.30 AM - 5 AM,11.30 AM - 5 AM,11.30 AM - 5 AM,11.30 AM - 5 AM,11.30 AM - 5 AM,2 PM - 5 AM,4 PM - 5 AM |
+---------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
If you notice, the data looks like this 11.30 AM - 5 AM
I need to replace it with this 11.30AM-5AM
. This goes for every comma separated data in this record (and then applied on several thousand records).
Not quite sure how to handle this.