To keep this simple, I intent to store some html based content that is created by the end user. So a table like the following
create table Content
(
ContentId,
Title,
ContentHtml
)
Now, the HTML comes from let's say a CKEditor. Is it good practice to also store the plain text version of the content so that full text search or whatever search mech can more easily find the content? As shown below.
table Content
(
ContentId,
Title,
ContentHtml,
ContentPlainText
)