Skip to content

Commit f14e9cb

Browse files
OleksiiKovalovrwestMSFT
authored andcommitted
Update operator precedence table with shift operators
Added Bitwise Left Shift and Right Shift operators to the operator precedence table.
1 parent 8f6c716 commit f14e9cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/t-sql/language-elements/operator-precedence-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ monikerRange: "=azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-20
2929
|-----------|---------------|
3030
|1|~ (Bitwise NOT)|
3131
|2|* (Multiplication), / (Division), % (Modulus)|
32-
|3|+ (Positive), - (Negative), + (Addition), + (Concatenation), - (Subtraction), & (Bitwise AND), ^ (Bitwise Exclusive OR), | (Bitwise OR)|
32+
|3|+ (Positive), - (Negative), + (Addition), + (Concatenation), - (Subtraction), & (Bitwise AND), ^ (Bitwise Exclusive OR), &#124; (Bitwise OR)|, LEFT_SHIFT or \<\< (Bitwise Left Shift), RIGHT_SHIFT or >> (Bitwise Right Shift)
3333
|4|=, >, \<, >=, <=, <>, !=, !>, !< (Comparison operators)|
3434
|5|NOT|
3535
|6|AND|

0 commit comments

Comments
 (0)