I want to filter out several key phrases out of a dataset. Unfortunately, the only algorithm I've been able to come up with thus far is nested replace statements, such as:
SELECT
REPLACE(
REPLACE(FIELDNAME,'</u>','')
,'<u>','')
where FIELDNAME is raw HTML code stored in a table. As you can see, this is hideous. Any better ideas?