I have a column called NAMES with data that looks like this:
google - content
google - content
I need to run an update to remove the ' - content' from the column.
here is what I have so far.
UPDATE TABLE
SET COLUMN NAMES = DECODE(NAMES,' - CONTENT', '')
WHERE NAMES LIKE '%CONTENT';
Is this the best function to use to remove the - content from each row??
Thanks for the help!!