I have a stored procedure in SQL Server that executes like this
EXEC @return_value = SP
@value1 = 'A',
@value2 = 'B'
and the result is:
value3 | value 4 | value 5
I need to add the columns value1 and value2 to the result (yes, the same I use to execute the stored procedure). There is no chance to change the stored procedure, because it is from another project. Is it possible to do?
I work often with Oracle, so I don't know if maybe it's something simple, or maybe it can't be done.
Thanks for your answers!