Skip to content

Commit

Permalink
Update datatype convert example 340 (#2678)
Browse files Browse the repository at this point in the history
* Update 3.alter-tag.md

* Update 3.alter-tag.md

Update 3.alter-tag.md
  • Loading branch information
abby-cyber authored Mar 23, 2023
1 parent 61cced1 commit 0273793
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs-2.0/3.ngql-guide/10.tag-statements/3.alter-tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

- 确保新增的属性名不与已存在或被删除的属性名同名,否则新增属性会失败。

- 仅允许**增加**`FIXED_STRING``INT`类型的长度,不允许减少长度。
- 仅允许转换`FIXED_STRING`类型为`STRING`类型、转换`FLOAT`类型为`DOUBLE`类型。

## 语法

Expand All @@ -35,6 +33,11 @@ ttl_definition:
- 可以在一个`ALTER TAG`语句中使用多个`ADD``DROP``CHANGE`子句,子句之间用英文逗号(,)分隔。

- 当使用`ADD``CHANGE`指定属性值为`NOT NULL`时,必需为该属性指定默认值,即定义`DEFAULT`的值。

- 当使用`CHANGE`修改属性的数据类型时:

- 仅允许修改`FIXED_STRING``INT`类型的长度为更大的长度,不允许减少长度。
- 仅允许修改`FIXED_STRING`类型为`STRING`类型、修改`FLOAT`类型为`DOUBLE`类型。

## 示例

Expand Down

0 comments on commit 0273793

Please sign in to comment.