6

我想加入两个表t1t2这样列中的t2值为any valid string including null followed by a value in column of t table.

我想要类似的东西:

SELECT * FROM t_cities c JOIN temp_table t ON c.NAME LIKE "%t.token"但不知道确切的语法。上面的语句当然给出了一个错误。

4

2 回答 2

12

试试这个查询,它应该可以工作。

SELECT * FROM t_cities as a  
JOIN temp_table as b  
ON a.NAME   LIKE concat("%",b.token);

注意- 此查询不会像普通连接那样快,并且需要时间。

于 2013-10-08T11:37:25.690 回答
-1

尝试

    SELECT *
  FROM t_cities c
  JOIN temp_table t ON c.field = t.field
 where c.NAME LIKE "%t.token"
于 2013-10-08T11:32:52.183 回答