analytics2006
MIS
How can I remove Punctuation
from the address field like listed below?
555 S. 3829 W.#
from the address field like listed below?
555 S. 3829 W.#
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table blah222(Address varchar(666))
insert blah222 values('555 S. 3829 W.#')
select *,'before' from blah222
update blah222
set Address = replace(Address,'.','')
select *,'after' from blah222