I think what you can do is a query like:
Code:
DELETE FROM visitormessage WHERE postusername = 'username'
where you'd replace username with the actual name. Of course you should be careful to get it right so you don't accidentally remove anyone else's messages. You could first change "DELETE" to "SELECT *" and check to see if the results look like what you want to remove.