Skip to content

Commit 9a6fe52

Browse files
AI Translate 30-query-operators to Simplified-Chinese (#2455)
* [INIT] Start translation to Simplified-Chinese * 🌐 Translate comparison.md to Simplified-Chinese --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: z <[email protected]>
1 parent f38baab commit 9a6fe52

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.translation-init

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Translation initialization: 2025-06-23T06:48:29.245290
1+
Translation initialization: 2025-06-23T06:48:51.684822
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: Comparison Operators
2+
title: 比较运算符
33
---
44

5-
| Operator | Description | Example | Result |
6-
| ------------- | ------------------------------------------- | ------------------------- | ------ |
7-
| `=` | a 等于 b | `2 = 2` | TRUE |
8-
| `!=` | a 不等于 b | `2 != 3` | TRUE |
9-
| `<\>` | a 不等于 b | `2 <\> 2` | FALSE |
10-
| `>` | a 大于 b | `2 > 3` | FALSE |
11-
| `>=` | a 大于或等于 b | `4 >= NULL` | NULL |
12-
| `<` | a 小于 b | `2 < 3` | TRUE |
13-
| `<=` | a 小于或等于 b | `2 <= 3` | TRUE |
14-
| `IS NULL` | 如果表达式为 NULL 则为 TRUE,否则为 FALSE | `(4 >= NULL) IS NULL` | TRUE |
15-
| `IS NOT NULL` | 如果表达式为 NULL 则为 FALSE,否则为 TRUE | `(4 >= NULL) IS NOT NULL` | FALSE |
5+
| 运算符(Operator| 描述(Description | 示例(Example | 结果(Result |
6+
| ------------------ | ------------------------------------------------- | ------------------------- | -------------- |
7+
| `=` | a 等于 b | `2 = 2` | TRUE |
8+
| `!=` | a 不等于 b | `2 != 3` | TRUE |
9+
| `<>` | a 不等于 b | `2 <> 2` | FALSE |
10+
| `>` | a 大于 b | `2 > 3` | FALSE |
11+
| `>=` | a 大于或等于 b | `4 >= NULL` | NULL |
12+
| `<` | a 小于 b | `2 < 3` | TRUE |
13+
| `<=` | a 小于或等于 b | `2 <= 3` | TRUE |
14+
| `IS NULL` | 表达式为 NULL 时返回 TRUE,否则返回 FALSE | `(4 >= NULL) IS NULL` | TRUE |
15+
| `IS NOT NULL` | 表达式为 NULL 时返回 FALSE,否则返回 TRUE | `(4 >= NULL) IS NOT NULL` | FALSE |

0 commit comments

Comments
 (0)