我有两个这样的表,
表1
Id Locations
-- ---------
1 India, Australia
2 US , UK
表2
Table2Id Location
-------- --------
101 Italy
102 UK
103 Hungary
104 India
我需要在条件下对这两个表进行内部联接,如果表2中的Locations
包含表1中的Location
字段。结果将类似
Id Table2Id Location Locations
-- -------- -------- ---------
1 104 India India, Australia
2 102 UK US , UK
我试过类似的东西
Select t1.id,
t2.Table2Id,
t1.Locations,
t2.Location
From Table1 t1
Inner join Table2 t2 On CONTAINS(t1.Locations, t2.Location)
但是contains
的第二个参数应该是字符串。不允许在那里给出列名。
我不能在查询中使用temptable
或variable
。因为此查询需要在名为ExactTarget
的电子邮件活动工具上运行,该工具不支持temptable
和variables
。
如有任何帮助,我们将不胜感激。非常感谢。
表格和数据
create table table1 (id int, locations varchar(100));
insert into table1 values
(1, 'India, Australia'),
(2, 'US, UK');
create table table2 (table2id int, location varchar(100));
insert into table2 values
(101, 'Italy'),
(102, 'UK'),
(103, 'Hungary'),
(104, 'India');
MySQL查询
select
table1.id,
table2.table2id,
table2.location,
table1.locations
from table1
join table2 on table1.locations like concat('%', table2.location, '%')
SQL Server查询
select
table1.id,
table2.table2id,
table2.location,
table1.locations
from table1
join table2 on table1.locations like '%' + table2.location + '%'
编辑
如果国家名称Australia中包含美国位置,则上述查询可能无法正常工作。为了解决这个问题,这里有一个使用的可能查询
select
table1.id,
table2.table2id,
table2.location,
table1.locations
from table1
join table2 on
',' + replace(table1.locations,', ', ',') + ',' like '%,' + table2.location + ',%'
此查询强制India, Australia
变为,India,Australia,
。然后将其与CCD_ 11进行比较,因此不会出现不正确的结果。
如果您正在使用Mysql,您可以查看以下选项:INSTR
select table2id, location, table1.id, locations
from table2 inner join table1 on instr(locations,location) >= 1;
SQL Fiddle链接
我是SQL世界的新手,我正面临着这个问题。实际上比这个大得多,但这是我想要的最后一块拼图。
以下是我解决问题的方法:
SELECT * FROM t1 CROSS JOIN t2
WHERE t1.Locations CONTAINS t2.Location;
根据我们使用的语言使用CONTAINS
。
想想我离放弃这个谜题有多近,这个解决方案真的有多简单。