How to pass multiple values to single parameter in stored procedure

后端 未结 5 768
野趣味
野趣味 2020-12-30 06:54

I\'m using SSRS for reporting and executing a stored procedure to generate the data for my reports

DECLARE @return_value int

EXEC    @return_value = [dbo].[         


        
5条回答
  •  天命终不由人
    2020-12-30 07:12

    Either use a User Defined Table

    Or you can use CSV by defining your own CSV function as per This Post.

    I'd probably recommend the second method, as your stored proc is already written in the correct format and you'll find it handy later on if you need to do this down the road.

    Cheers!

提交回复
热议问题