i have a stored procedure with parameters and the returning result is a single row with columns. I need to insert that row to a table.i wanna use that result inside of an another stored procedure. How can i do that ? My result is below :
ID | TotalTime | DeservedTime
25 | 100 | 150
thanks a lot in advance.
you can insert exec
SomeTable should match the returning schema of yourStoredProcedure