I have a database with data that is in html format.
Is there an update query I can use which will remove all the HTML comments from it?
<!-- Some comment -->
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SQLite has very limited string manipulation. I strongly suggest taking a platform with a good connector (like .NET) and going through your list, updating one-by-one. Use a regex (egad!) or something appropriate to remove the HTML comments.