- Arithmetic operators
- Relational operators
- Comparison operators
- Logical operators
- String operators
Arithmetic Operators
- +
- -
- *
- /
- **
Relational Operators
- =
- !=
- <>
- ~=
- >
- <
- >=
- <=
Comparison Operators
- LIKE
- BETWEEN
- IN
- IS NULL
Logical Operators
- AND
- OR
- NOT
Operator Precedence
Operator | Operation |
---|---|
** | exponentiation |
+, - | identity, negation |
*, / | multiplication, division |
+, -, || | addition, subtraction, concatenation |
=, <, >, <=, >=, <>, !=, ~=, ^=, IS NULL, LIKE, BETWEEN, IN | comparison |
NOT | logical negation |
AND | conjunction |
OR | inclusion |
No comments:
Post a Comment