You need to sign in to do that
Don't have an account?

Querying string with apostrophe in SOQL
I need to query string with apostrophe in it.
SELECT NAME FROM ACCOUNT WHERE NAME = 'TEST'ING'
Right now, i get a error message saying MALFORMED QUERY. Can someone help me on this?
The escape for apostrophe is just \'
i.e.
SELECT name FROM Account WHERE Name = 'TEST\'ING'