本帖最后由 up704 于 2012-12-24 23:25:51 编辑

解决方案 »

  1.   


    select b.*
    from tableB b, (select * from table where aid = ~id~ limit 1,30) a
    where instr(b.title,a.name)
      

  2.   

    select * from tableB b
    where exists (select 1 from (select * from table where aid = ~id~ limit 1,30) a where instr(b.title,a.name))
      

  3.   


    select * from table A INNER JOIN 
    (select * from table where aid = ~id~ limit 1,30) B
    ON INSTR(B.title,A.F1)>0OR
    select * from table A,(select * from table where aid = ~id~ limit 1,30) B
    WHERE 
    A.title like CONCAT('%',B.F1,'%')
      

  4.   

    三条都试了,都一样出现:Safe Alert: Request Error step 2!