I need to Update Address to (PO Box) field where I find Post Office Box in that field (like Post Office Box%) and I don't know how to do it.
Example of the data:
Post Office Box 225 need to be equal to PO Box 225
My start:
UPDATE TblCust
SET
tblCust.A1 =
????????
FROM
TblCust
where
(A1 LIKE 'POST OFFICE BOX%' OR
A1 LIKE 'POST OFFICE BOX%')
Thank you