Thread: Caret problem
View Single Post

  #1 (permalink)  
Old 05-13-2007
Paul Lautman
 
Posts: n/a
Default 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?


Reply With Quote