OQL not working

0
Hello! I am using 1 OQL Statement in which I am using this command but it is showing 1 error i tried removed single quote it is showing error in console while running  And contains function is  also showing console level error   Any help will be appreciated Thanks in Advance        
asked
1 answers
1

As the parameter is a string you’ll probably need to escape the quote in the string by adding another quote:

Like ‘’%ABCDE%’’’ So the first is a set of 2 quote characters to esacape the first quote literal, the string is ended with 3 quotes, 2 for the literal quote in the string an 1 for the end of the string value.

answered