Hi Caka,
In order to join,you can use POSITION function to match the partial Strings in the two column
select * from Table1 T1 left join Table2 T2
on (T1.ColB = T2.ColB AND POSITION(TRIM(T1.ColA) IN TRIM(T2.ColA))>0)
where T2.ColC = 0;
There are other ways to accomplish the same as well For example:use of substring functions
Hi Caka,
In order to join,you can use POSITION function to match the partial Strings in the two column
There are other ways to accomplish the same as well For example:use of substring functions