人生不可能总是顺心如意的,但是持续朝着阳光走,影子就会躲在后面。刺眼,却表明对的方向。
表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语句like多个条件的写法实例请关注haodaima.com其它相关文章!