<jw56578@gmail. com> wrote in message
news:1111709552 .442972.201630@ l41g2000cwc.goo glegroups.com.. .[color=blue]
> Is it possible to take the result from an SP that returns 1 value and
> insert it into a variable?
>[/color]
If a procedure returns one value, then you should use an output variable:
create proc dbo.p_out
@i int output
as
set @i = 1
go
Comment