| big>Common Relational Operators |
Relational Operator !! Meaning |
| align="center" | == | Equality. Used to test the equivalence of two expressions. |
| align="center" | = | Variant of equality. |
| align="center" | != | Inequality. Used to test the equivalence of two expressions. |
| align="center" | <> | Variant of inequality. |
| align="center" | /= | Variant of inequality. This is not as common as the above operator. |
| align="center" | ^= | Variant of inequality. This is not as common as the above operator. (Also a bitwise XOR assignment in C-like languages.) |
| align="center" | > | Greater than. Used to test if the value of the left expression is greater than that of the right expression. |
| align="center" | < | Less than. Used to test if the value of the left expression is less than that of the right expression. |
| align="center" | >= | Greater than or equal to. Used to test if the value of the left expression is greater than or equal to that of the right expression. |
| align="center" | <= | Less than or equal to. Used to test if the value of the left expression is less than or equal to that of the right expression. |
| align="center" | =< | Variant of less than or equal to. |