Github
来源:MatrixOne
浏览 91
扫码
分享
2023-07-17 22:25:59
Operators Overview
Name | Description |
---|
%,MOD | Modulo operator |
* | Multiplication operator |
+ | Addition operator |
- | Minus operator |
- | Change the sign of the argument |
/ | Division operator |
DIV | Integer division |
Name | Description |
---|
= | Equal operator |
Name | Description |
---|
CAST() | Cast a value as a certain type |
CONVERT() | Cast a value as a certain type |
Name | Description |
---|
> | Greater than operator |
>= | Greater than or equal operator |
< | Less than operator |
<>,!= | Not equal operator |
<= | Less than or equal operator |
= | Equal operator |
BETWEEN … AND … | Whether a value is within a range of values |
IN() | Whether a value is within a set of values |
IS | Test a value against a boolean |
IS NOT | Test a value against a boolean |
IS NOT NULL | NOT NULL value test |
IS NULL | NULL value test |
LIKE | Simple pattern matching |
NOT BETWEEN … AND … | Whether a value is not within a range of values |
NOT LIKE | Negation of simple pattern matching |
Name | Description |
---|
CASE | Case operator |
IF() | If/else construct |