vote up 0 vote down star
1

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.

flag

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

4 Answers

vote up 1 vote down check

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|flag
vote up 1 vote down

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|flag
But is it secure? – James Feb 13 at 1:57
This is pretty neat. +1! (However , I'm wondering why it cannot be just charindex(FirstName,@List) ? – Learning Feb 18 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 at 4:59
vote up 0 vote down

See udf___Txt_SplitTab from Andrew Novick

Select * from Users where FirstName IN (Select Item From udf_Txt_SplitTAB (@LIST, '|'))
link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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