我需要从一个表中搜索具有另一个表的列值的列值。
例如
MyTable
Col1 Col2
AAA 1
BBB 2
CCC 3
MyTable2
Col1 Col2
GHKGH AAAh 1
dhsjsBvd 2
bdnd CCC b 3
我需要在MyTable2的col1值中搜索MyTable中的col1值。
我不想对字符串进行硬编码,而是从表中获取值。
尝试使用instr
和regex_instr
,但这些函数不允许搜索模式中的列值。
我正在使用oracle 10g。 TIA
答案 0 :(得分:4)
此处经过测试的示例:http://sqlfiddle.com/#!4/037ffe/3
select
t1.col1 AS t1col1, t2.col1 AS t2col1
from
MyTable t1
left join MyTable2 t2
on t2.col1 like '%' || t1.col1 || '%'
包括DDL的完整示例:
CREATE TABLE MyTable (col1 varchar2(9));
INSERT ALL
INTO MyTable (col1)
VALUES ('AAA')
INTO MyTable (col1)
VALUES ('BBB')
INTO MyTable (col1)
VALUES ('CCC')
SELECT * FROM dual;
CREATE TABLE MyTable2 (col1 varchar2(18));
INSERT ALL
INTO MyTable2 (col1)
VALUES ('GHKGH AAAh')
INTO MyTable2 (col1)
VALUES ('dhsjsBvd')
INTO MyTable2 (col1)
VALUES ('bdnd CCC b')
SELECT * FROM dual;
select
t1.col1 AS t1col1, t2.col1 AS t2col1
from
MyTable t1
left join MyTable2 t2
on t2.col1 like '%' || t1.col1 || '%'
结果集:
T1COL1 T2COL1 AAA GHKGH AAAh BBB (null) CCC bdnd CCC b