Skip to main content
Skip to main content

TO_IPV6_OR_NULL

TO_IPV6_OR_NULL​

SinceVersion dev

TO_IPV6_OR_NULL

description​

Syntax​

IPV6 TO_IPV6_OR_NULL(STRING ipv6_str)

Same as to_ipv6, but if the IPv6 address has an invalid format, it returns NULL.

notice​

If input is NULL, return NULL.

example​

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

mysql> select to_ipv6_or_null(NULL);
+-----------------------+
| to_ipv6_or_null(NULL) |
+-----------------------+
| NULL |
+-----------------------+

keywords​

TO_IPV6_OR_NULL, IP