how can I escape this? I get a parse error because it’s reading the ! literally or something
select [text] from someDB
where contains([text], '<![CDATA[')
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.
CONTAINS is designed to search for words. You’d be better off using a LIKE (
LIKE '%<![[]CDATA[[]%') match for this.