服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - sql语句like多个条件的写法实例

sql语句like多个条件的写法实例

2020-01-16 14:12MSSQL教程网 Sql Server

这篇文章介绍了sql语句like多个条件的写法实例,有需要的朋友可以参考一下

表A  
no name 
1   lu,li,zhang  
2   zhou,wei,liu  
3   li,fang  
表B  
no name  sex 
1   li          1 
2   lu         0 
3   zhou    0 
4   zhang  1  

怎么实现

复制代码代码如下:


select * from A where A.name like (select B.name from B where B.sex=1) 


---------------------------------------------------------------------------------------------------------------------------- 
sqlserver写法 

复制代码代码如下:


select distinct a.no,a.name from a,b where charindex(b.name,a.name)>0 and b.sex=1 

  
oracle写法

复制代码代码如下:


select distinct a.no,a.name from a,b where instr(a.name,b.name)>0 and b.sex=1 

----- instr() 定位子串 instr('Hello World', 'or')   返回8

延伸 · 阅读

精彩推荐