INET_NTOA()
INET_NTOA(IP_address)This function converts the numeric equivalent of an IP address to its dot-quad notation. The function INET_ATON() can be used to reverse the results.
SELECT INET_NTOA('209654088')
AS 'AT&T';
+--------------+
| AT&T |
+--------------+
| 12.127.17.72 |
+--------------+