Mysql根据另一个表中的select更新所有行

时间:2011-01-27 13:36:09

标签: mysql select

我有两个表格;

mysql> describe ipinfo.ip_group_country;
+--------------+-------------+------+-----+---------+-------+
| Field        | Type        | Null | Key | Default | Extra |
+--------------+-------------+------+-----+---------+-------+
| ip_start     | bigint(20)  | NO   | PRI | NULL    |       |
| ip_cidr      | varchar(20) | NO   |     | NULL    |       |
| country_code | varchar(2)  | NO   | MUL | NULL    |       |
| country_name | varchar(64) | NO   |     | NULL    |       |
+--------------+-------------+------+-----+---------+-------+

mysql> describe logs.logs;
+----------------------+------------+------+-----+---------------------+----------------+
| Field                | Type       | Null | Key | Default             | Extra          |
+----------------------+------------+------+-----+---------------------+----------------+
| id                   | int(11)    | NO   | PRI | NULL                | auto_increment |
| ts                   | timestamp  | NO   |     | CURRENT_TIMESTAMP   |                |
| REMOTE_ADDR          | tinytext   | NO   |     | NULL                |                |
| COUNTRY_CODE         | char(2)    | NO   |     | NULL                |                |
+----------------------+------------+------+-----+---------------------+----------------+

我可以使用第一张表中的IP地址选择国家/地区代码:

mysql> SELECT country_code FROM ipinfo.`ip_group_country` where `ip_start` <= INET_ATON('74.125.45.100') order by ip_start desc limit 1;
+--------------+
| country_code |
+--------------+
| US           |
+--------------+

在logs.logs中,我设置了所有REMOTE_ADDR(IP地址),但所有COUNTRY_CODE条目都为空。现在,我想使用ipinfo表适当地填充COUNTRY_CODE。我怎么能这样做?

谢谢!

2 个答案:

答案 0 :(得分:9)

尝试

UPDATE logs.logs
SET COUNTRY_CODE = (
    SELECT country_code
    FROM ipinfo.ip_group_country
    WHERE ipinfo.ip_start <= INET_ATON(logs.REMOTE_ADDR)
    LIMIT 1
)
WHERE COUNTRY_CODE IS NULL

如果说列类型必须匹配,则必须更改logs.logs表,以便REMOTE_ADDR列与ip_cidr表的类型相同(varchar(20))。

答案 1 :(得分:8)

在单表更新中,您使用update t1 set c1=x where y

在多表格更新中,您使用update t1, t2 set t1.c1=t2.c2 where t1.c3=t2.c4

以下是相关文档http://dev.mysql.com/doc/refman/5.0/en/update.html

您正在寻找的是(编辑过的)update logs.logs as l, ipinfo.ip_group_country as c set l.COUNTRY_CODE=c.country_code where c.ip_start <= INET_ATON(l.REMOTE_ADDR) order by c.ip_start asc

编辑:你是对的,我提供的原始答案中的max()无法正常工作。上面的查询应该是,尽管它可能不如下面提供的答案中的方法那样有效。