Question
I'm having some bother with variables?
I'm having some bother with variables?
In ms sql if @AS@adobe.com @706459 is NULL then @a is always null.
@a = @AS@adobe.com + @706459
What is the best way to make sure @a contains a value if either @amountSpot or @amountForward contains a number?
set @a = @amountSpot + @amountForward
In ms sql if @AS@adobe.com @706459 is NULL then @a is always null.
@a = @AS@adobe.com + @706459
What is the best way to make sure @a contains a value if either @amountSpot or @amountForward contains a number?
set @a = @amountSpot + @amountForward
