码迷,mamicode.com
首页 > 数据库 > 详细

mysql数据库ip与字符串

时间:2017-10-24 19:34:34      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:font   地址   div   class   style   mysql   数字   sel   字符   

Mysql自带的IP转换语句

  • inet_aton:将ip地址转换成数字型
  • inet_ntoa:将数字型转换成ip地址
//使用inet_aton函数,将字符串IP转换为整型;
mysql> select inet_aton(73.115.134.73) as ip;
+------------+
| ip         |
+------------+
| 1232307785 |
+------------+

//使用inet_ntoa函数,将整型IP转换为字符串;
mysql> select inet_ntoa(1232307785) as ip;
+---------------+
| ip            |
+---------------+
| 73.115.134.73 |
+---------------+

 

mysql数据库ip与字符串

标签:font   地址   div   class   style   mysql   数字   sel   字符   

原文地址:http://www.cnblogs.com/javadongx/p/ip_int_varchar.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!