I got a value like "opening 01-01-2001" in a field, i want to remove all values like that, getting a result like "opening ".
Actually i'm using this code to replace words:
UPDATE table
SET field = REPLACE(field, 'word', '');
Is there something like wildcards? I.E.:
UPDATE table
SET field = REPLACE(field, '%*-*-*%', '');
To remove all entire word using only the starting character or the word mask?