I can find whit this query
SELECT *
FROM Table
WHERE CODE_DESC = '{"title:\["1","2","3"\]"}'
But, I can't find this query
SELECT *
FROM Table
WHERE CODE_DESC LIKE '%{"title:\["1","2","3"\]"}%'
What is different?
I tried like this:
SELECT *
FROM Table
WHERE CODE_DESC LIKE '% {"title:\["1","2","3"\]"} %'
SELECT *
FROM Table
WHERE CODE_DESC LIKE '%{"title:\["1","2","3"\]"}%'
but, I can't solve the issue