MYSQL存储IP地址 人们经常使用VARCHAR(15)列来存储IP地址。 然而,它们实际上是32位无符号整数,不是字符串。 用小数点将地址分成四段的表示方法只是为了让人们阅读容易。 所以应该用无符号整数存储IP地址。 MySQL提供INET_ATON()和INET_NTOA()函数在这两种表
MYSQL存储IP地址
人们经常使用VARCHAR(15)列来存储IP地址。
然而,它们实际上是32位无符号整数,不是字符串。
用小数点将地址分成四段的表示方法只是为了让人们阅读容易。
所以应该用无符号整数存储IP地址。
MySQL提供INET_ATON()和INET_NTOA()函数在这两种表示方法之间转换。
转自
http://blog.csdn.net/bingbingtea/article/details/16996697
http://www.jb51.net/article/29962.htm
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn