SQL is not the problem, but if the admin is allowed to paste from Word, then you need to clean up the markup before storing it. I don't know WebHtmlEditor, but you can easily test: if pasting from Word yields things like
style="mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US;
mso-fareast-language: EN-US; mso-bidi-language: AR-SA;
mso-bidi-font-family: 'Times New Roman'; mso-highlight: yellow"
or
<p class="MsoNormal"> .. </p><o.p></o.p>
or a lot of additional <span>
and <div>
tags, then you'd want to clean up the markup before storing it. Maybe you can test using some online demo and then click some View HTML button within the editor, though then you would not know if the editor might clean up upon saving.
Note that browsers respond differently to the pasting from Word, so if you're relying on WebHtmlEditor to clean up things then you may need to test using some different browsers.
Some rich text editors offer a special button "Paste from Word", but that might effectively act as "Paste as Plain Text", after which your admin might stop using it... (And, of course, your admin might simply forget to use it, so cleaning up is required even if such button exists.)