I have Sql database with table name QUESTION.
I want to insert value for QuestionTitle as html string. Insert query is
INSERT INTO
QUESTION (QuestionType,QuestionID,QuestionTitle)
VALUES ("MRQ",
"QNB5T6TKDMS",
"<p><span style="font-family: comic sans ms,sans-serif; font-size:
small;">what was the original concentration of the acid?</span></p>")
When I try to execute this query in Sql it gives an error . How can I do this so that it will work for html string.