Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Performs a bitwise negation of an integer. This operator can be applied to signed and unsigned integer data types.
Składnia
~integer_expression
Arguments
- integer_expression
Is any valid expression of an integer data type. integer_expression is an integer that is transformed into a binary number for the bitwise operation. For more information, see Integration Services Data Types.
Result Types
Returns the data type of integer_expression.
Uwagi
None
Expression Examples
This example performs a bitwise ~ (NOT) operation on the number 170 (0000 0000 1010 1010). The number is a signed integer.
~ 170
The expression evaluates to -170 (1111111101010101).
0000000010101010
----------------------
1111111101010101
Zobacz także
Koncepcje
Operator Precedence and Associativity