I have a table (let's call it A) with a text field called references_int
which has numerous values. One example is 'internal\reference[111]'
.
If I do
SELECT *
FROM A
WHERE references_int LIKE 'internal\\reference[111]'
it will return zero rows. But if I replace LIKE
with =
it works.
I use a framework that simplifies find queries, but it uses LIKE
.. Is there a way for it to work?
No idea if it's a bug or a feature.
Thanks!