Skip to content

Commit c5bbae1

Browse files
github-actions[bot]BohuTANG
authored andcommitted
๐Ÿ’ฌGenerate LLM translations
1 parent da25ce8 commit c5bbae1

File tree

4 files changed

+118
-0
lines changed

4 files changed

+118
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: LTRIM
3+
---
4+
import FunctionDescription from '@site/src/components/FunctionDescription';
5+
6+
<FunctionDescription description="ๅผ•ๅ…ฅๆˆ–ๆ›ดๆ–ฐ: v1.2.659"/>
7+
8+
ไปŽๅญ—็ฌฆไธฒ็š„ๅผ€ๅคด๏ผˆๅทฆไพง๏ผ‰็งป้™ค็‰นๅฎšๅญ—็ฌฆใ€‚
9+
10+
ๅฆ่ฏทๅ‚้˜…:
11+
12+
- [TRIM_LEADING](trim-leading.md)
13+
- [RTRIM](rtrim.md)
14+
15+
## ่ฏญๆณ•
16+
17+
```sql
18+
LTRIM(<string>, <trim_character>)
19+
```
20+
21+
## ็คบไพ‹
22+
23+
```sql
24+
SELECT LTRIM('xxdatabend', 'xx');
25+
26+
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
27+
โ”‚ ltrim('xxdatabend', 'xx') โ”‚
28+
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
29+
โ”‚ databend โ”‚
30+
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
31+
```
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: RTRIM
3+
---
4+
import FunctionDescription from '@site/src/components/FunctionDescription';
5+
6+
<FunctionDescription description="ๅผ•ๅ…ฅๆˆ–ๆ›ดๆ–ฐ: v1.2.659"/>
7+
8+
ไปŽๅญ—็ฌฆไธฒ็š„ๆœซๅฐพ๏ผˆๅณไพง๏ผ‰็งป้™ค็‰นๅฎšๅญ—็ฌฆใ€‚
9+
10+
ๅฆ่ฏทๅ‚้˜…:
11+
12+
- [TRIM_TRAILING](trim-trailing.md)
13+
- [LTRIM](ltrim.md)
14+
15+
## ่ฏญๆณ•
16+
17+
```sql
18+
RTRIM(<string>, <trim_character>)
19+
```
20+
21+
## ็คบไพ‹
22+
23+
```sql
24+
SELECT RTRIM('databendxx', 'xx');
25+
26+
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
27+
โ”‚ rtrim('databendxx', 'xx') โ”‚
28+
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
29+
โ”‚ databend โ”‚
30+
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
31+
```
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: TRIM_LEADING
3+
---
4+
5+
ไปŽๅญ—็ฌฆไธฒ็š„ๅผ€ๅคด๏ผˆๅทฆไพง๏ผ‰็งป้™ค็‰นๅฎšๅญ—็ฌฆใ€‚
6+
7+
ๅฆ่ฏทๅ‚้˜…:
8+
9+
- [LTRIM](ltrim.md)
10+
- [TRIM_TRAILING](trim-trailing.md)
11+
12+
## ่ฏญๆณ•
13+
14+
```sql
15+
TRIM_LEADING(<string>, <trim_character>)
16+
```
17+
18+
## ็คบไพ‹
19+
20+
```sql
21+
SELECT TRIM_LEADING('xxdatabend', 'xx');
22+
23+
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
24+
โ”‚ trim_leading('xxdatabend', 'xx') โ”‚
25+
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
26+
โ”‚ databend โ”‚
27+
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
28+
```
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: TRIM_TRAILING
3+
---
4+
5+
ไปŽๅญ—็ฌฆไธฒ็š„ๆœซๅฐพ๏ผˆๅณไพง๏ผ‰็งป้™ค็‰นๅฎšๅญ—็ฌฆใ€‚
6+
7+
ๅฆ่ฏทๅ‚้˜…:
8+
9+
- [RTRIM](rtrim.md)
10+
- [TRIM_LEADING](trim-leading.md)
11+
12+
## ่ฏญๆณ•
13+
14+
```sql
15+
TRIM_TRAILING(<string>, <trim_character>)
16+
```
17+
18+
## ็คบไพ‹
19+
20+
```sql
21+
SELECT TRIM_TRAILING('databendxx', 'xx');
22+
23+
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
24+
โ”‚ trim_trailing('databendxx', 'xx') โ”‚
25+
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
26+
โ”‚ databend โ”‚
27+
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
28+
```

0 commit comments

Comments
ย (0)