分类: LINUX
2009-09-04 18:01:03
MySQL 中的内的 IP 地址转换函数:
1. IP 由点分格式,转换为数字格式。
mysql> select inet_aton('202.96.128.68'); +----------------------------+ | inet_aton('202.96.128.68') | +----------------------------+ | 3395321924 | +----------------------------+
2. IP 由数字格式转换为点分格式。
mysql> select inet_ntoa(3395321924); +-----------------------+ | inet_ntoa(3395321924) | +-----------------------+ | 202.96.128.68 | +-----------------------+