Skip to content

Commit

Permalink
Update 1.numeric.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy authored Oct 10, 2023
1 parent 32bb5c7 commit 447946c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs-2.0/3.ngql-guide/3.data-types/1.numeric.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ nGQL 支持科学计数法,例如`1e2`、`1.1e2`、`.3e4`、`1.e4`、`-1234E-1

在写入和读取不同类型的数据时,nGQL 的行为遵守以下规则:

| 数值类型 | 设置为 VID | 设置为属性类型 | 实际存储的数值类型 |
| 数值类型 | 设置为 VID | 设置为属性类型 | 读取该类型的属性值得到的类型 |
|-|-|-|-|
| INT64 | 支持 | 支持 | INT64 |
| INT32 | 不支持 | 支持 | INT64 |
Expand All @@ -41,7 +41,7 @@ nGQL 支持科学计数法,例如`1e2`、`1.1e2`、`.3e4`、`1.e4`、`-1234E-1
| FLOAT | 不支持 | 支持 | DOUBLE |
| DOUBLE | 不支持 | 支持 | DOUBLE |

例如,nGQL 不支持设置 INT8 类型的 [VID](../../1.introduction/3.vid.md),但支持将 [TAG](../10.tag-statements/1.create-tag.md)[Edge type](../11.edge-type-statements/1.create-edge.md) 的某个属性类型设置为 INT8。当使用 nGQL 语句插入 INT8 类型的属性时,实际存储的数值类型为 INT64,读取时获取的数值类型也为 INT64。
例如,nGQL 不支持设置 INT8 类型的 [VID](../../1.introduction/3.vid.md),但支持将 [TAG](../10.tag-statements/1.create-tag.md)[Edge type](../11.edge-type-statements/1.create-edge.md) 的某个属性类型设置为 INT8。当使用 nGQL 语句读取 INT8 类型的属性时,获取到的值的类型为 INT64。

- {{nebula.name}}支持写入多种进制的数值:

Expand Down

0 comments on commit 447946c

Please sign in to comment.