Hi all, I have 2 questions
1.- How can i search for "%" using like
select * from table where sfield like '%%%'
is not working!
2.- I am using Full-text catalog in one table of my db, i would like to
know if i can search for % using
CONTAINSTABLE(TABLE.....
thanks
Alberto
Hilary Cotter - 20 Oct 2005 20:28 GMT
1) try something like this
select * from table where sfield like '%!% %' escape '!'
2) this will work but it will match with any non alphanumeric character.
> Hi all, I have 2 questions
>
[quoted text clipped - 12 lines]
>
> Alberto