模糊匹配配两个表中的两个字段?
模糊匹配配两个表中的两个字段?
------解决方案--------------------??
------解决方案--------------------select * from tb1, tb2
where tb1.col like '% '+tb2.col+ '% ' or tb2.col like '% '+tb1.col+ '% '
------解决方案--------------------like
-- or
patindex
------解决方案--------------------select *
from ta join tb on charindex(ta.Name,tb.Name)> 0 or
charindex(tb.Name,ta.Name)> 0