<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Inner Join OR condition in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318346#M88700</link>
    <description>&lt;P&gt;I want to join two tables in tMap using 6 columns in ON, out of that 2 should be in OR. &lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;EG: SELECT * FROM A &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INNER JOIN B &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ON ​B.C1 = A.C1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; AND B.C2 = A.C2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; AND B.C3 = A C3&lt;/P&gt;&lt;P&gt;​ AND B.C4 = A.C4&lt;/P&gt;&lt;P&gt; AND (B.C5 = A.C5 &lt;/P&gt;&lt;P&gt; OR B.C6 = A.C6)&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;How to implement this in talend?. I tried to mention C5 and C6 column in expression filter while joining,but it doesn't work&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 00:50:27 GMT</pubDate>
    <dc:creator>Rathesh</dc:creator>
    <dc:date>2024-11-16T00:50:27Z</dc:date>
    <item>
      <title>Inner Join OR condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318346#M88700</link>
      <description>&lt;P&gt;I want to join two tables in tMap using 6 columns in ON, out of that 2 should be in OR. &lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;EG: SELECT * FROM A &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INNER JOIN B &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ON ​B.C1 = A.C1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; AND B.C2 = A.C2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; AND B.C3 = A C3&lt;/P&gt;&lt;P&gt;​ AND B.C4 = A.C4&lt;/P&gt;&lt;P&gt; AND (B.C5 = A.C5 &lt;/P&gt;&lt;P&gt; OR B.C6 = A.C6)&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;How to implement this in talend?. I tried to mention C5 and C6 column in expression filter while joining,but it doesn't work&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:50:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318346#M88700</guid>
      <dc:creator>Rathesh</dc:creator>
      <dc:date>2024-11-16T00:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join OR condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318347#M88701</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;It is impossible to implement this in one join on tMap, as a workaround, do the join two times,&lt;/P&gt;&lt;P&gt;one join:&lt;/P&gt;&lt;P&gt;SELECT * FROM A&lt;/P&gt;&lt;P&gt;INNER JOIN B&lt;/P&gt;&lt;P&gt;ON ​B.C1 = A.C1&lt;/P&gt;&lt;P&gt;AND B.C2 = A.C2&lt;/P&gt;&lt;P&gt;AND B.C3 = A C3&lt;/P&gt;&lt;P&gt;​ AND B.C4 = A.C4&lt;/P&gt;&lt;P&gt;AND B.C5 = A.C5&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;another join:&lt;/P&gt;&lt;P&gt;SELECT * FROM A&lt;/P&gt;&lt;P&gt;INNER JOIN B&lt;/P&gt;&lt;P&gt;ON ​B.C1 = A.C1&lt;/P&gt;&lt;P&gt;AND B.C2 = A.C2&lt;/P&gt;&lt;P&gt;AND B.C3 = A C3&lt;/P&gt;&lt;P&gt;​ AND B.C4 = A.C4&lt;/P&gt;&lt;P&gt;AND  B.C6 = A.C6&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;merge the two results using tUnite, and then filter the duplicated rows using tFilterRow&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;Hope it helps！&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 03:50:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318347#M88701</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-13T03:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join OR condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318348#M88702</link>
      <description>&lt;P&gt;@Rathesh Varadarajan​&amp;nbsp;, you do the join till  B.C4 = A.C4  in tmap and then in the output section enable filter and write the B.C5 = A.C5&lt;/P&gt;&lt;P&gt;OR B.C6 = A.C6 as filter condition for that output section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 07:26:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318348#M88702</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2021-01-13T07:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join OR condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318349#M88703</link>
      <description>&lt;P&gt;Good way, I didn’t think of it for a while, I still prefer this way. @Manohar B​&amp;nbsp;&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 08:42:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318349#M88703</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-13T08:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join OR condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318350#M88704</link>
      <description>&lt;P&gt;@manodwhb, I have tried this already in Input component expression filter, because I am using Unique match. In this scenario, I am not getting any records, but the record should come. If I mentioned in Output(as you told) and if record matched in both condition I will get 2 records. Then I can't apply Unique match model &lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 18:57:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318350#M88704</guid>
      <dc:creator>Rathesh</dc:creator>
      <dc:date>2021-01-14T18:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join OR condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318351#M88705</link>
      <description>&lt;P&gt;@Shicong Hong&amp;nbsp;, is there any custom component to implement this or will talend implement this in future release?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 19:01:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Inner-Join-OR-condition/m-p/2318351#M88705</guid>
      <dc:creator>Rathesh</dc:creator>
      <dc:date>2021-01-14T19:01:07Z</dc:date>
    </item>
  </channel>
</rss>

