未验证 提交 9343b842 编写于 作者: S shenglian-zhou 提交者: GitHub

Merge pull request #11129 from taosdata/szhou/fix/td-14372

[TD-14372]:change document for substr when pos is negative
......@@ -908,6 +908,8 @@ SELECT ROUND(field_name) FROM { tb_name | stb_name } [WHERE clause];
该函数可以应用在普通表和超级表上。
版本2.6.0.x后支持
- **ACOS**
```sql
......@@ -928,6 +930,8 @@ SELECT ROUND(field_name) FROM { tb_name | stb_name } [WHERE clause];
该函数可以应用在普通表和超级表上。
版本2.6.0.x后支持
- **ATAN**
```sql
......@@ -1298,7 +1302,7 @@ SELECT ROUND(field_name) FROM { tb_name | stb_name } [WHERE clause];
说明:
如果输入值为NULL,输出值为NULL。
输入参数pos可以为正数,也可以为负数。如果pos是正数,表示从开始往后抽取子串。如果pos为负数,表示从结尾往前抽取字符串。如果输入参数len被忽略,返回的子串包含从pos开始的整个字串。
输入参数pos可以为正数,也可以为负数。如果pos是正数,表示开始位置从字符串开头正数计算。如果pos为负数,表示开始位置从字符串结尾倒数计算。如果输入参数len被忽略,返回的子串包含从pos开始的整个字串。
该函数可以应用在普通表和超级表上。
该函数适用于内层查询和外层查询。
版本2.6.0.x后支持
......
......@@ -2150,7 +2150,7 @@ TDengine支持针对数据的聚合查询。提供支持的聚合和选择函数
说明:
如果输入值为NULL,输出值为NULL。
输入参数pos可以为正数,也可以为负数。如果pos是正数,表示从开始往后抽取子串。如果pos为负数,表示从结尾往前抽取字符串。如果输入参数len被忽略,返回的子串包含从pos开始的整个字串。
输入参数pos可以为正数,也可以为负数。如果pos是正数,表示开始位置从字符串开头正数计算。如果pos为负数,表示开始位置从字符串结尾倒数计算。如果输入参数len被忽略,返回的子串包含从pos开始的整个字串。
该函数可以应用在普通表和超级表上。
该函数适用于内层查询和外层查询。
版本2.6.0.x后支持
......
......@@ -1703,7 +1703,7 @@ TDengine supports aggregations over data, they are listed below:
Notes:
Returns NULL when input is NULL.
Input pos can be negative or positive. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string
Input pos can be negative or positive. If it is a positive number, the beginning of the substring is pos characters from the beginning of the string. If it is a negative number, the beginning of the substring is pos characters from the end of the string
If input len is omitted, the output is whole substring starting from pos.
This function applies to normal table, child table and super table
This function applies to bother out query and inner query
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册