龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 数据库类 > Sql Server开发 >

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

时间:2014-05-16 15:05来源:网络整理 作者:网络 点击:
分享到:
这篇文章介绍了sql语句like多个条件的写法实例,有需要的朋友可以参考一下
sql plain">表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
精彩图集

赞助商链接