vote up 0 vote down star

Hi,

How do I make SQL SERVER 2005 to ignore the backslash in the following search:

select [description] from MyTable where contains([description], '3/4 and bear')

It is blowing off on "/"!

flag

45% accept rate
That's a forward slash, not a backslash. – Joel Coehoorn May 4 at 19:59
Yes! Thanks for the correction – azamsharp May 4 at 20:27
looks similar to stackoverflow.com/questions/319730/… – hainstech May 4 at 20:55

2 Answers

vote up 0 vote down

Try this

select [description] from MyTable
where [description] LIKE '%3/4 and bear%'

link|flag
Thanks but I really need to use Full Text Search! – azamsharp May 4 at 19:52
vote up 0 vote down

try using '"3/4 and bear'"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.