nickburrett
07-30-2011, 05:00 PM
Would I be right in saying that the following update statement will replace 1 with 01 and 14 with 014.
I only want it to replace 1 with 01 - how do I achieve this?
update bookings set eventMonth = replace(eventMonth, '1', '01')
I only want it to replace 1 with 01 - how do I achieve this?
update bookings set eventMonth = replace(eventMonth, '1', '01')