mysql基础 Like关联查询

Posted AngDH

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql基础 Like关联查询相关的知识,希望对你有一定的参考价值。

// mysql中使用concat连接字符串
select  t1.id, t1.title, t2.keyword from t1 inner join t2 on t1.title like concat(%, t2.keyword, %); 


其它思路:exists(是否存在)、regexp(正则)、instr(字符串包含)
select distinct t1.title from t1 , t2 where instr(t1.title,t2.keyword);
select distinct t1.title from t1 inner join  t2 on t1.title regexp t2.keyword;
select * from t1 where exists (select keyword from t2 where t1.title regexp keyword);
select * from t1 where exists (select keyword from t2 where t1.title like concat(%,keyword,%));

 

 


https://blog.csdn.net/bbirdsky/article/details/26054971

以上是关于mysql基础 Like关联查询的主要内容,如果未能解决你的问题,请参考以下文章

Sequelize 关联和查询此 mysql 查询

关于MySQL的关联查询

SQL中order by;group up;like;关联查询join on的用法

mysql 联合模糊查询问题?

Mysql基础04-查询

如何在 MYSQL 查询中将“LIKE”与“IN”结合起来?