this will empty the content field
UPDATE tablename SET content = '' WHERE content LIKE '%plonker%'
this will remove the entire record
DELETE FROM tablename WHERE content LIKE '%plonker%'
This will find any version of the word plonker however, be it a whole word or part of a word (eg. splonker). If you want just words then you'd need to do something like
content LIKE '% plonker %' OR content LIKE '% plonker,%' OR content LIKE '% plonker.%'
and so on, covering any type of symbol that could be after the word.
hth