码迷,mamicode.com
首页 > 数据库 > 详细

mysql基础 Like关联查询

时间:2019-11-08 21:15:17      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:word   detail   color   rds   字符串包含   article   net   存在   http   

// 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关联查询

标签:word   detail   color   rds   字符串包含   article   net   存在   http   

原文地址:https://www.cnblogs.com/angdh/p/11822815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!