当前位置:Gxlcms > mssql > sql语句like多个条件的写法实例

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

时间:2021-07-01 10:21:17 帮助过:678人阅读

表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

您可能感兴趣的文章:

  • sql语句中like的用法详细解析
  • SQL查询语句通配符与ACCESS模糊查询like的解决方法
  • SQL中代替Like语句的另一种写法
  • C#适用于like语句的SQL格式化函数
  • 利用reverse索引优化like语句的方法详解

人气教程排行