TO_IPV6_OR_NULL
TO_IPV6_OR_NULLβ
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