vote up 1 vote down star

In T-SQL, how would you check if a string doesn't contain another string?

I have an nvarchar which could be "Oranges Apples".

I would like to do an update where, for instance, a columm doesn't contain "Apples".

How can this be done?

flag

58% accept rate

3 Answers

vote up 5 vote down check
WHERE NOT (someColumn LIKE "%Apples%")
link|flag
Why didn't I think of that, I was going for something much more advanced :) – Dofs Aug 7 at 19:06
vote up 2 vote down

Or alternatively, you could use this:

WHERE CHARINDEX(N'Apples', someColumn) = 0

Not sure which one performs better - you gotta test it! :-)

Marc

UPDATE: the performance seems to be pretty much on a par with the other solution (WHERE someColumn NOT LIKE '%Apples%') - so it's really just a question of your personal preference.

link|flag
Performance is not such a big issue in my case. – Dofs Aug 7 at 20:19
vote up 1 vote down

Use this as your WHERE condition

WHERE CHARINDEX('Apples', column) = 0
link|flag

Your Answer

Get an OpenID
or

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