You can ignore my previous post, it probably won't help.
What exactly are you trying to do?
If you want to change S_NAME when it contains just the text 'OLD', then LittleSmudge's solution is perfect.
If you want to eliminate the text 'OLD' wherever it appears in the field, then use:
[tt]UPDATE songs SET s_name=REPLACE(s_name,'OLD','')[/tt]
or, if you want a record count:
[tt]UPDATE songs SET s_name=REPLACE(s_name,'OLD','') WHERE s_name LIKE '%OLD%'[/tt]