Skip to content

Commit 7429571

Browse files
committed
fix: operators
1 parent 843e66f commit 7429571

File tree

1 file changed

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

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Comparison Operators
33
---
44

5-
| Operator | Description | Example | Result |
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 |
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 |
13-
| `**<=**` | a is less than or equal to b | `**2 <= 3**` | TRUE |
14-
| **IS NULL** | TRUE if expression is NULL, FALSE otherwise | **(4 >= NULL) IS NULL** | TRUE |
15-
| **IS NOT NULL** | FALSE if expression is NULL, TRUE otherwise | **(4 >= NULL) IS NOT NULL** | FALSE |
5+
| Operator | Description | Example | Result |
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 |
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 |
13+
| `<=` | a is less than or equal to b | `2 <= 3` | TRUE |
14+
| `IS NULL` | TRUE if expression is NULL, FALSE otherwise | `(4 >= NULL) IS NULL` | TRUE |
15+
| `IS NOT NULL` | FALSE if expression is NULL, TRUE otherwise | `(4 >= NULL) IS NOT NULL` | FALSE |

0 commit comments

Comments
 (0)