SelectDB Cloud
SQL 手册
SQL 函数
字符串函数
REPLACE_EMPTY

replace_empty

description

Syntax

自 2.1.5 版本支持。

VARCHAR REPLACE_EMPTY (VARCHAR str, VARCHAR old, VARCHAR new)

str 字符串中的 old 子串全部替换为 new 字符串。

REPLACE() 函数不同的是,当 old 为空字符串时,会将 new 字符串插入到 str 字符串的每个字符前,以及 str 字符串的最后。

除此之外,其他行为和 REPLACE() 函数完全一致。

该函数主要用于兼容 Presto、Trino,其行为了 Presto、Trino 中的 REPLACE() 函数完全一致。

example

mysql> select replace_empty("http://www.baidu.com:9090", "9090", "");
+------------------------------------------------------+
| replace('http://www.baidu.com:9090', '9090', '') |
+------------------------------------------------------+
| http://www.baidu.com:                                |
+------------------------------------------------------+

mysql> select replace_empty("abc", '', 'xyz');
+---------------------------------+
| replace_empty('abc', '', 'xyz') |
+---------------------------------+
| xyzaxyzbxyzcxyz                 |
+---------------------------------+

mysql> select replace_empty("", "", "xyz");
+------------------------------+
| replace_empty('', '', 'xyz') |
+------------------------------+
| xyz                          |
+------------------------------+

keywords

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