Good Day All -
Trying to use the replace function to clean up some address issues during data extract.
The issue I'm running into is I only want to update the address if the street type is abbreviated.
Address 1 needs to be updated so 'Ci' becomes 'Circle', but I don't want address 2 to end up with 'Circlercle'.
- 187624 W Windor Ci
- 187624 W Windor Circle
select replace(address, ' Ci', ' Circle') as address
At times the 'Ci' value are the last characters in the field or they can be followed by and apartment number. I tried using ' Ci ' for the find, but still missing addresses if the address field ends with ' Ci'.
Any thoughts much appreciated.