반응형
Operator | Description | Precedence |
INTERVAL | Return the index of the argument that is less than the first argument | 1 |
BINARY COLLATE | This is a type that stores binary byte strings This clause override whatever the default collation is for comparison | 2 |
! | Negate values | 3 |
-A ~A | It change the sign of the operand It inverts the bits of operand | 4 |
^ | Bitwise XOR | 5 |
* / DIV MOD | Multiplication operator Division operator Integer Division (discard the fractional part of division) Modulo operator | 6 |
- A +A | Minus operator Addition operator | 7 |
<< >> | Shift a (BIGINT) number or binary string to left Shift a (BIGINT) number or binary string to right | 8 |
& | Bitwise AND | 9 |
| | Bitwise OR | 10 |
= < => > <= != IS LIKE REGEXP IN | Comparison operator NULL-safe equal to operator Greater than Greater than or equal to Less than Less than or equal to Not Equal to operator Test a value against a boolean value Pattern matching operator Matches the string expression with the regular expression Check whether a value is present in list or not | 11 |
BETWEEN CASE WHEN THEN ELSE |
Check whether a value is within a range of values Case operator | 12 |
NOT | Negates Value | 13 |
AND, && | Logical AND | 14 |
XOR | Logical XOR | 15 |
OR, || | Logical OR | 16 |
반응형
'old > Programming' 카테고리의 다른 글
부분문자열과 순열, 그리고 조합의 차이점, 경우의 수란? (0) | 2023.07.02 |
---|---|
자바연산자 >>>와 >>의 차이점 (0) | 2023.06.22 |
무료 자바 설치 하는 법 (0) | 2023.06.22 |
아나콘다, 파이참 가상환경 설정하기: 단계별 가이드 (0) | 2023.06.20 |
자바 스트링 replace와 replaceAll의 차이점 (0) | 2023.06.18 |