Skip to content

Commit 395a763

Browse files
💬Generate LLM translations (#1042)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent da2550c commit 395a763

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+152
-152
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"label": "Numeric Functions"
2+
"label": "数值函数"
33
}

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/abs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: ABS
33
---
44

5-
Returns the absolute value of `x`.
5+
返回 `x` 的绝对值。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
ABS( <x> )
1111
```
1212

13-
## Examples
13+
## 示例
1414

1515
```sql
1616
SELECT ABS(-5);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/acos.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: ACOS
33
---
44

5-
Returns the arc cosine of `x`, that is, the value whose cosine is `x`. Returns NULL if `x` is not in the range -1 to 1.
5+
返回 `x` 的反余弦值,即其余弦值为 `x` 的值。如果 `x` 不在 -1 到 1 的范围内,则返回 NULL。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
ACOS( <x> )
1111
```
1212

13-
## Examples
13+
## 示例
1414

1515
```sql
1616
SELECT ACOS(1);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/add.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: ADD
33
---
44

5-
Alias for [PLUS](plus.md).
5+
[PLUS](plus.md) 的别名。

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/asin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: ASIN
33
---
44

5-
Returns the arc sine of `x`, that is, the value whose sine is `x`. Returns NULL if `x` is not in the range -1 to 1.
5+
返回 `x` 的反正弦值,即其正弦值为 `x` 的值。如果 `x` 不在 -1 到 1 的范围内,则返回 NULL。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
ASIN( <x> )
1111
```
1212

13-
## Examples
13+
## 示例
1414

1515
```sql
1616
SELECT ASIN(0.2);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/atan.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: ATAN
33
---
44

5-
Returns the arc tangent of `x`, that is, the value whose tangent is `x`.
5+
返回 `x` 的反正切值,即其正切值为 `x` 的值。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
ATAN( <x> )
1111
```
1212

13-
## Examples
13+
## 示例
1414

1515
```sql
1616
SELECT ATAN(-2);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/atan2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: ATAN2
33
---
44

5-
Returns the arc tangent of the two variables `x` and `y`. It is similar to calculating the arc tangent of `y` / `x`, except that the signs of both arguments are used to determine the quadrant of the result. `ATAN(y, x)` is a synonym for `ATAN2(y, x)`.
5+
返回两个变量 `x` `y` 的反正切值。它类似于计算 `y` / `x` 的反正切值,但区别在于两个参数的符号用于确定结果的象限。`ATAN(y, x)` `ATAN2(y, x)` 的同义词。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
ATAN2( <y, x> )
1111
```
1212

13-
## Examples
13+
## 示例
1414

1515
```sql
1616
SELECT ATAN2(-2, 2);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/cbrt.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: CBRT
33
---
44

5-
Returns the cube root of a nonnegative number `x`.
5+
返回非负数 `x` 的立方根。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
CBRT( <x> )
1111
```
1212

13-
## Examples
13+
## 示例
1414

1515
```sql
1616
SELECT CBRT(27);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/ceil.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
title: CEIL
33
---
44

5-
Rounds the number up.
5+
向上取整。
66

7-
## Syntax
7+
## 语法
88

99
```sql
1010
CEIL( <x> )
1111
```
1212

13-
## Aliases
13+
## 别名
1414

1515
- [CEILING](ceiling.md)
1616

17-
## Examples
17+
## 示例
1818

1919
```sql
2020
SELECT CEILING(-1.23), CEIL(-1.23);

docs/cn/sql-reference/20-sql-functions/04-numeric-functions/ceiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: CEILING
33
---
44

5-
Alias for [CEIL](ceil.md).
5+
[CEIL](ceil.md) 的别名。

0 commit comments

Comments
 (0)