Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to escape the underscore character in a LIKE Statement. I have tried to use the ESCAPE keyword as follows:

COLUMNNAME NOT LIKE '%[_]xyz%' ESCAPE '\'

but it doesn't work. It is still filtering out %xyz% when I really want it to filter out %_xyz%.

If not by the ESCAPE keyword, how else can this be accomplished?

Any help is appreciated.

share|improve this question

3 Answers

up vote 4 down vote accepted

Just this should work:

COLUMNNAME NOT LIKE '%[_]xyz%'

You don't need the ESCAPE here. What you wrote should also work.

If you do want to use ESCAPE you could do this:

columnname NOT LIKE '%\_xyz%' ESCAPE '\';

Documentation on escape characters is here.

share|improve this answer
Thanks, this worked. I am not sure why it wasn't working before but it does now so much appreciated. – James Thomas Feb 19 '10 at 23:40

use brakets [_]

This works for me in SQL Server 2005

select *
from #table 
where a like '%[_]xyz%'
share|improve this answer
+1: Supporting link: sqlserver2000.databases.aspfaq.com/… – OMG Ponies Feb 20 '10 at 0:04

Try it without the brackets:

COLUMNNAME NOT LIKE '%\_xyz%' ESCAPE '\'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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