Microsoft
Software
Hardware
Network
Question : SQL sum
I have a stored procedure that does the following
take in parameter
@Par1 int
@Par2 int
@Par3 int
'does some stuff to give both @par1 and @par2 numeric value
How would i add the @par1 + @par2 to give @par3 a value
@par3 = @par1 + @par2
Answer : SQL sum
set @par3 = @par1 + @par2
Random Solutions
speak & auto type?
What are some good guides on designing and building video games
How to re-write code using strings to Delphi 2010
Worldspan - calling worldspan web service
Popup details on mouse hover using Jquery
ASP.NET Error: The page was not displayed because the request entity is too large.
Trouble installing Panasonic Printer/Copier devices on SBS 2008
SID History/re-ACL'ing when moving to new AD forest
When I encrypt/encode a string using codeigniter encryption class, it is different everytime, why?
How do I invoke a Java script for onkeypress for a dynamically added control?