SelectDB Cloud
SQL 手册
SQL 函数
IP Functions
TO_IPV4_OR_DEFAULT

TO_IPV4_OR_DEFAULT

TO_IPV4_OR_DEFAULT

Description

Syntax

IPV4 TO_IPV4_OR_DEFAULT(STRING ipv4_str)

与to_ipv4函数类似,但如果IPv4地址的格式非法,则返回0.0.0.0。

Notice

入参如果为 NULL,则返回 0.0.0.0。

Example

mysql> select to_ipv4_or_default('.');
+-------------------------+
| to_ipv4_or_default('.') |
+-------------------------+
| 0.0.0.0                 |
+-------------------------+
 
mysql> select to_ipv4_or_default(NULL);
+--------------------------+
| to_ipv4_or_default(NULL) |
+--------------------------+
| 0.0.0.0                  |
+--------------------------+

Keywords

TO_IPV4_OR_DEFAULT, IP

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