docs:[TD-32851] Modify the description of function UNIQUE.

This commit is contained in:
Jing Sima 2024-11-11 14:14:26 +08:00
parent 82cf87369a
commit dbdba764dd
2 changed files with 2 additions and 2 deletions

View File

@ -1149,7 +1149,7 @@ TOP(expr, k)
UNIQUE(expr) UNIQUE(expr)
``` ```
**Description**: The values that occur the first time in the specified column. The effect is similar to `distinct` keyword. For a table with composite primary key, only the data with the smallest primary key value is returned. **Description**: Return the unique values of this column. The effect is similar to `distinct` keyword. Return the row with the earliest timestamp for duplicate data. For a table with composite primary key, only the data with the smallest primary key value is returned.
**Return value type**:Same as the data type of the column being operated upon **Return value type**:Same as the data type of the column being operated upon

View File

@ -1988,7 +1988,7 @@ TOP(expr, k)
UNIQUE(expr) UNIQUE(expr)
``` ```
**功能说明**:返回该列数据首次出现的值。该函数功能与 distinct 相似。对于存在复合主键的表的查询,若最小时间戳的数据有多条,则只有对应的复合主键最小的数据被返回。 **功能说明**:返回该列数据去重后的值。该函数功能与 distinct 相似。对于相同的数据,返回时间戳最小的一条,对于存在复合主键的表的查询,若最小时间戳的数据有多条,则只有对应的复合主键最小的数据被返回。
**返回数据类型**:同应用的字段。 **返回数据类型**:同应用的字段。