Viewing 3 posts - 1 through 3 (of 3 total)
I'll try to explain in better detail:
Create Procedure p_myproc1
Begin
SELECT 1
End
--- Proc 1 just returns a value of 1 through a select...
December 2, 2009 at 3:24 pm
#1086804
I tried that code, its actually executing the procedure and returning it as a result from the
calling stored procedure. I need it to just put the value into @Result...
December 2, 2009 at 2:50 pm
#1086790
That works, I left out one part, I have to sum the most recent 500, the query would look like this:
select TOP 500 Convert(money,SubString(strrow,8,5) from tComments where strrow like '%Value:%'...
September 29, 2009 at 9:46 am
#1059566