Home Forums SQL Server 2008 T-SQL (SS2K8) Passing Multiple Values As Parameters to get Multiple Columns with Comma Seperation(MSSQL) RE: Passing Multiple Values As Parameters to get Multiple Columns with Comma Seperation(MSSQL)

  • If you can't use a table valued parameter you can pass a list of values and then create a "splitter" function that turns that list into a set of data that you can then JOIN on. You should check out this article[/url].