We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19319a1 commit dc01d68Copy full SHA for dc01d68
docs/en/sql-reference/10-sql-commands/30-query-operators/comparison.md
@@ -6,7 +6,7 @@ title: Comparison Operators
6
| ------------- | ------------------------------------------- | ------------------------- | ------ |
7
| `=` | a is equal to b | `2 = 2` | TRUE |
8
| `!=` | a is not equal to b | `2 != 3` | TRUE |
9
-| `<\>` | a is not equal to b | `2 <\> 2` | FALSE |
+| `<>` | a is not equal to b | `2 <> 2` | FALSE |
10
| `>` | a is greater than b | `2 > 3` | FALSE |
11
| `>=` | a is greater than or equal to b | `4 >= NULL` | NULL |
12
| `<` | a is less than b | `2 < 3` | TRUE |
0 commit comments