I am trying to pass a variable amount of parameters into a MySql stored proc. I have done this in Sql Server by using xml or parsing a delimited list. I am guessing I could do the parsing of a list in MySql but are there other options?
What I am trying to do is I have a configuration that stores a filter of data to return. The filter is based off of categories which correspond to fields that need to be returned (variable number based on company). I pretty much want to write an "IN" clause with these configured category IDs, but am doing everything via Stored Proc.