up vote 0 down vote favorite
1
share [g+] share [fb]

I am trying to find a way to query rows of data by using a "multivalue" pipe delimited column in another table as a WHERE clause. SQL SERVER 2005

This is my best description of the problem:

Imagine a pipe delimited column set to a variable like @LIST = 'Bob|Mary|Joe'

then I am trying to find a match like this

Select * from Users where FirstName = 'Joe'

but extended to be

Select * from Users where FirstName "IS CONTAINED IN" @List

which would return all the Bob, Mary and Joe entries. Thanks for your help.

link|improve this question

Good luck. SQL is meant for querying normalized data, not pipe-delimited strings. – yfeldblum Feb 13 '09 at 1:20
Hey, not my design. ;> – Ash Machine Feb 13 '09 at 1:50
feedback

5 Answers

up vote 1 down vote accepted

You can use a split udf and join it to your main query. see this link for the code and an example. Your query would end up looking like this. This is untested but hopefully this points you in the right direction.

Select A.* from Users A JOIN dbo.Fn_Split(@ValueArrayString, '|') B on A.FirstName = B.value
link|improve this answer
feedback

How about

Select * from Users where CHARINDEX(FirstName + '|', @List + '|') > 0

A little annoying that you have to append the pipe delimiter to both strings, but it works, and it's probably faster than a function.

link|improve this answer
But is it secure? – James Feb 13 '09 at 1:57
This is pretty neat. +1! (However , I'm wondering why it cannot be just charindex(FirstName,@List) ? – Learning Feb 18 '09 at 5:21
That could give false matches, ie if a name in the list was BillyBob, it'd match incorrectly without the additional delimiter. – MrTelly Feb 19 '09 at 4:59
feedback

Check out the PATINDEX() function. It's a bit limited, but it should do what you're looking for.

link|improve this answer
feedback

See udf___Txt_SplitTab from Andrew Novick

Select * from Users where FirstName IN (Select Item From udf_Txt_SplitTAB (@LIST, '|'))
link|improve this answer
feedback

I like MrTelly's solution. However, it's only taking care of half the false-positives. The full solution is as follows:

Select * from Users where CHARINDEX('|' + FirstName + '|', '|' + @List + '|') > 0

The pipe needs to be added on both ends

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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