Good afternoon all!
Say I have a stored procedure....
exec my_sp ?,?
I can execute this stored procedure by adding two values e.g.
exec my_sp 'value 1','value 2'
Now this is where things get tricky.....
I have a table for example
1 | 2
aa bb
cc dd
and so on.......
Now I want to pass my table values through and create one table of results e.g.
exec my_sp 'aa','bb'
exec my_sp 'cc','dd'
and so on..........
Is this possible?