views:

157

answers:

2

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 "/"!

A: 

Try this

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

Dmitri Kouminov
Thanks but I really need to use Full Text Search!
azamsharp
+1  A: 

try using '"3/4 and bear'"