Hi,
Is there a way to use wildcards to update this recordset? I've got a column with 'madison county, cook county, dupage county' and i'd like to change it to
'madison, cook, dupage'
I can make each change individually, but is there a simpler way?
update physician
SET physician_practice_County1 = 'Madison'
where physician_practice_County1= 'Madison County'
I tried the following:
update physician
SET physician_practice_County1 = '%'
where physician_practice_County1= '% County'
all help appreciated.