SelectDB Cloud
SQL 手册
函数
string-functions
substr

substr

description

Syntax

VARCHAR substr(VARCHAR content, INT start, INT length)

求子字符串,返回第一个参数描述的字符串中从start开始长度为len的部分字符串。首字母的下标为1。

example

mysql> select substr("Hello doris", 2, 1);
+-----------------------------+
| substr('Hello doris', 2, 1) |
+-----------------------------+
| e                           |
+-----------------------------+
mysql> select substr("Hello doris", 1, 2);
+-----------------------------+
| substr('Hello doris', 1, 2) |
+-----------------------------+
| He                          |
+-----------------------------+

keywords

SUBSTR
© 2023 北京飞轮数据科技有限公司 京ICP备2022004029号 | Apache、Apache Doris 以及相关开源项目名称均为 Apache 基金会商标