跳到主要内容
跳到主要内容

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