sql中如何判断某个表中的一个字段的值是不是在另一个表中的某个字段的值中包含 是如何解决

2024-12-02 22:39:16
推荐回答(3个)
回答1:

oracle语法
select * from A where not exists(select 1 from B where instr(',' || B.namelist || ',',a.name)>做腔桐0;
sql语法纯坦
select * from A where not exists(select 1 from B where charindex(a.name,',' + B.namelist + ','圆数)>0;

GOOD LUCk

回答2:

select A.*
FROM A
WHERE exists (select * from B WHERE namelist like '%令模禅狐喊码穗冲郑卜%')

回答3:

就是用http://zhidao.baidu.com/question/351462964.html?quesup2&oldq=1这个谈裤内置函数来含指简判断就可以啦逗卜