INET_NTOA()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
Returns the string form of an IPv4 address in numeric form.
USAGE
INET_NTOA(binary)
Argument Name | Description |
---|---|
| The IPv4 address expressed in numeric form |
DETAILS
INET_NTOA()
is a network function that returns the dotted-quad string format of an IPv4 address expressed in numeric form.
A NULL
is returned if the argument is NULL
.
EXAMPLES
SELECT INET_NTOA(168430081);
+----------------------+
| INET_NTOA(168430081) |
+----------------------+
| 10.10.10.1 |
+----------------------+