Syntax
INET_NTOA(expr)
Purpose
Returns the IPv4 network address represented as a string in network byte order, formatted as a dotted IP address string, and as a string in the connection character set. If the parameter is invalid, it returns NULL.
Examples
obclient> SELECT INET_NTOA(16843009);
+---------------------+
| INET_NTOA(16843009) |
+---------------------+
| 1.1.1.1 |
+---------------------+
1 row in set
