我有2列,ip_start,ip_start_long
ip_start | ip_start_long
------------------------------------
0.255.255.255 | 16777215
我需要转换 ip_start (INET_ATON)
并将所有行(100万行)的更新复制到 ip_start_long
如何在php
或phpmyadmin
?
答案 0 :(得分:2)
简单的查询将为您执行此操作
update table set ip_start_long = INET_ATON(ip_start);