diff --git a/docs/en/data-operate/update-delete/sequence-column-manual.md b/docs/en/data-operate/update-delete/sequence-column-manual.md index ef44f1b561..abfe003a7a 100644 --- a/docs/en/data-operate/update-delete/sequence-column-manual.md +++ b/docs/en/data-operate/update-delete/sequence-column-manual.md @@ -57,16 +57,16 @@ The principle is the same as that of the reading process during Cumulative Compa The principle is the same as the reading process during Base Compaction. ### Syntax -When the Sequence column creates a table, an attribute is added to the property, which is used to identify the type import of `__DORIS_SEQUENCE_COL__`. The grammar design is mainly to add a mapping from the sequence column to other columns. The settings of each seed method will be described below introduce +When the Sequence column creates a table, an attribute is added to the property, which is used to identify the type import of `__DORIS_SEQUENCE_COL__`. The grammar design is mainly to add a mapping from the sequence column to other columns. The settings of each seed method will be described below introduce. #### Create Table -When you create the Uniq table, you can specify the sequence column type +When you create the Uniq table, you can specify the sequence column type. ```text PROPERTIES ( "function_column.sequence_type" = 'Date', ); ``` -The sequence_type is used to specify the type of the sequence column, which can be integral and time +The sequence_type is used to specify the type of the sequence column, which can be integral and time (DATE / DATETIME). #### Stream Load diff --git a/docs/zh-CN/data-operate/update-delete/sequence-column-manual.md b/docs/zh-CN/data-operate/update-delete/sequence-column-manual.md index d5c62205a0..41135753a2 100644 --- a/docs/zh-CN/data-operate/update-delete/sequence-column-manual.md +++ b/docs/zh-CN/data-operate/update-delete/sequence-column-manual.md @@ -72,7 +72,7 @@ PROPERTIES ( ); ``` -sequence_type用来指定sequence列的类型,可以为整型和时间类型。 +sequence_type用来指定sequence列的类型,可以为整型和时间类型(DATE、DATETIME)。 **Stream Load**