SelectDB Cloud
SQL 手册
SQL 函数
IP Functions
TO_IPV6_OR_DEFAULT

TO_IPV6_OR_DEFAULT

TO_IPV6_OR_DEFAULT

Description

Syntax

IPV6 TO_IPV6_OR_DEFAULT(STRING ipv6_str)

与to_ipv6函数类似,但如果IPv6地址的格式非法,则返回::。

Notice

入参 ipv6_str 如果为 NULL,则返回 ::

Example

mysql> select to_ipv6_or_default('.');
+-------------------------+
| to_ipv6_or_default('.') |
+-------------------------+
| ::                      |
+-------------------------+
 
mysql> select to_ipv6_or_default(NULL);
+--------------------------+
| to_ipv6_or_default(NULL) |
+--------------------------+
| ::                       |
+--------------------------+

Keywords

TO_IPV6_OR_DEFAULT, IP

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