Skip to content

Commit dc01d68

Browse files
wubxChasen-Zhang
andauthored
Update comparison.md (#2453)
remove escape '\' : <\> to <> Co-authored-by: z <[email protected]>
1 parent 19319a1 commit dc01d68

File tree

1 file changed

+1
-1
lines changed
  • docs/en/sql-reference/10-sql-commands/30-query-operators

1 file changed

+1
-1
lines changed

docs/en/sql-reference/10-sql-commands/30-query-operators/comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Comparison Operators
66
| ------------- | ------------------------------------------- | ------------------------- | ------ |
77
| `=` | a is equal to b | `2 = 2` | TRUE |
88
| `!=` | a is not equal to b | `2 != 3` | TRUE |
9-
| `<\>` | a is not equal to b | `2 <\> 2` | FALSE |
9+
| `<>` | a is not equal to b | `2 <> 2` | FALSE |
1010
| `>` | a is greater than b | `2 > 3` | FALSE |
1111
| `>=` | a is greater than or equal to b | `4 >= NULL` | NULL |
1212
| `<` | a is less than b | `2 < 3` | TRUE |

0 commit comments

Comments
 (0)