Caret problem
I needed to locate rows that contained
/[^\d]
Whilst
LIKE '%/[^%'
worked fine
LIKE '%/[^\d%' ESCAPE '@'
or even '%^\T%'
found nothing.
I tried escaping various parts, but if I had a character following the ^,
nothing was found.
Any ideas?
|