在oracle中,一个表有两个字段A,B,怎么样判断A字段的内容全部包含在B字段里面?内容的顺序不一定一致

2025-01-06 00:11:35
推荐回答(2个)
回答1:

select t.* from table t where field1 like '%'||t.field2||'%'这种可以匹配比如
a,b,c,ab,bc,abc在字符串abc中,但是你说的那种满足不了,不好意思,能力有限

回答2:

select t.* from table t
where substr(field1,1,1) like '%'||t.field2||'%
and substr(field1,2,1) like '%'||t.field2||'%
and substr(field1,3,1) like '%'||t.field2||'%
and substr(field1,4,1) like '%'||t.field2||'%