Mysql当前版本不支持'LIMIT& IN / ALL / ANY / SOME子查询'

时间:2018-01-16 19:21:16

标签: mysql sql join sql-update inner-join

我有一个table1 o_idPKhostb_id

o_id    host              b_id
9205    host1.abc.com     null
9206    host2.abc.com     null
9207    host3.abc.com     null

---超过1000行

我有另一张表table2 id作为PKhostnameb_id

id      hostname              o_id   ip
18356   host1                 null   10.10.10.10
18357   host2                 null   10.11.11.11
18358   host3                 null   10.12.12.12

---超过1000行

现在,如果hostname(excluding domain name)在两个表中都匹配,ip地址在('10.10|10.11')范围内,那么我想更新这两个表,table2.o_id = table1.o_idtable1.b_id = table2.id

update table1 T1
inner join table2 T2 on T2.hostname = substring_index(T1.host, '.', 1)
set T2.o_id = T1.o_id , 
    T1.b_id = T2.id
where T1.b_id IS NULL AND
 T2.ip IN (select ip from table2 where ip regexp ('10.10|10.11')
limit 10); 

在这里,我想要从第一个表格中的o_id更新第二个表格中的o_id。 我还想在第二个表中的b_id更新第一个表中的id

在这里,我得到一个error

Error Code: 1235. This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'

我正在使用MYSQL Versin 6.0

1 个答案:

答案 0 :(得分:3)

只需再执行join而不是in

update table1 T1 inner join
       table2 T2 
       on T2.hostname = substring_index(T1.host, '.', 1) join
       (select distinct ip
        from table2
        where ip regexp ('10.10|10.11')
        limit 10
       ) t3
       on t2.ip = t3.ip
set T2.o_id = T1.o_id , 
    T1.b_id = T2.id
where T1.b_id IS NULL ;