Operator |
Syntax |
Description |
||||||
|---|---|---|---|---|---|---|---|---|
= |
expr1 = expr2 |
Equal. Returns True if expr1 is equal to expr2. |
||||||
< |
expr1 < expr2 |
Less than. Returns True if expr1 is less than expr2. |
||||||
> |
expr1 > expr2 |
Greater than. Returns True if expr1 is greater than expr2. |
||||||
<> |
expr1 <> expr2 |
Not equal. Returns True if expr1 is not equal to expr2. |
||||||
<= |
expr1 <= expr2 |
Less than or equal. Returns True if expr1 is less than or equal to expr2. |
||||||
>= |
expr1 >= expr2 |
Greater than or equal. Returns True if expr1 is greater than or equal to expr2. |
||||||
like |
String like Pattern |
Returns True if String matches the regular expression Pattern.
|