Skip to content

Commit c499738

Browse files
AI Translate 1-array to Simplified-Chinese (#2896)
* [INIT] Start translation to Simplified-Chinese * 🌐 Translate array-transform.md to Simplified-Chinese * 🌐 Translate array-transform.md to Simplified-Chinese --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b3b52c2 commit c499738

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.translation-init

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Translation initialization: 2025-10-23T05:40:09.780391

docs/cn/sql-reference/20-sql-functions/10-semi-structured-functions/1-array/array-transform.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: JSON_ARRAY_TRANSFORM
44

55
import FunctionDescription from '@site/src/components/FunctionDescription';
66

7-
<FunctionDescription description="引入或更新版本:v1.2.762"/>
7+
<FunctionDescription description="引入或更新于:v1.2.762"/>
88

9-
使用指定的转换 Lambda 表达式(Lambda Expression)转换 JSON 数组的每个元素。有关 Lambda 表达式的更多信息,请参阅 [Lambda 表达式](../../../30-stored-procedure-scripting/index.md#lambda-表达式)
9+
使用指定的转换 Lambda 表达式对 JSON 数组中的每个元素进行转换。有关 Lambda 表达式的更多信息,请参阅 [Lambda 表达式](../../../30-stored-procedure-scripting/index.md#lambda-expressions)
1010

1111
## 语法
1212

@@ -30,4 +30,4 @@ SELECT ARRAY_TRANSFORM(
3030

3131
-[ RECORD 1 ]-----------------------------------
3232
array_transform([1, 2, 3, 4], data -> data::Int32 * 10): [10,20,30,40]
33-
```
33+
```

docs/cn/sql-reference/20-sql-functions/10-semi-structured-functions/3-map/map-filter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
55

66
<FunctionDescription description="引入或更新版本:v1.2.762"/>
77

8-
根据指定条件过滤 JSON 对象中的键值对,条件使用 [Lambda 表达式](../../../30-stored-procedure-scripting/index.md#lambda-表达式)定义。
8+
根据指定条件过滤 JSON 对象中的键值对,条件使用 [Lambda 表达式](../../../30-stored-procedure-scripting/index.md#lambda-expressions)定义。
99

1010
## 语法
1111

@@ -29,4 +29,4 @@ SELECT MAP_FILTER('{"status":"active", "user":"admin", "time":"2024-11-01"}'::VA
2929
├─────────────────────┤
3030
│ {"status":"active"} │
3131
└─────────────────────┘
32-
```
32+
```

0 commit comments

Comments
 (0)