博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Like关系查询
阅读量:4963 次
发布时间:2019-06-12

本文共 761 字,大约阅读时间需要 2 分钟。

比如:有表1。表2两张相,希望通过like进行关联查询
// mysql中使用concat连接字符串
select  t1.id, t1.title, t2.keyword from t1 inner join t2 on t1.title like concat('%', t2.keyword, '%'); 
// oracle、postgres 使用||连接字符串。其他库使用字符串连方式连接就可以
select  t1.id, t1.title, t2.keyword from t1 inner join t2 on t1.title like '%' || 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://www.cnblogs.com/gcczhongduan/p/4818853.html

你可能感兴趣的文章
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>