I want to know if it is possible to insert to a table from a specific column of result from a stored procedure?
Something like:
declare @temp as table(
id int
)
insert @temp
exec getlistofStudents --returns multiple columns
this is an example only, Thanks for the help..