Which of the following below are Compound Operators in sql server 2008

Options
- +=
- %=
- *=
- all of above


CORRECT ANSWER : all of above

Discussion Board
Compound operators

Compound assignment operator means an operator combined with another operator. The compound assignment operators that are supported in SQL Server 2008 are:
+=: Add and assign

-=: Subtract and assign

*=: Multiply and assign

/=: Divide and assign

%=: Modulus and assign

&=: Bitwise AND and assign

|=: Bitwise OR and assign

^=: Bitwise XOR and assign

Prajakta Pandit 03-7-2017 11:08 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement