This is my problem. I have a table tbl_archivos
with values like this:
Id desc namerc
---------------------------
1 arch1 RC201721091701
2 arch2 RC201724091701
I have to pass all the values of the column namerc
in my table (above) to a stored procedure like parameter.
Like this :
sp_runproceess_billing 'RC201721091701'
and then the another value RC201724091701
.
I am not allowed to use a cursor!
Please help me with this issue.
Thank you