<?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>article Qlik Talend Data Integration: Doing an inner join using a tMap component in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-Data-Integration-Doing-an-inner-join-using-a-tMap/ta-p/2150835</link>
    <description>&lt;DIV class="talend-tkb-migrated-content"&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Overview&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;To achieve desired results, it's often necessary to perform joins between data sources. &lt;STRONG&gt;tMap&lt;/STRONG&gt; is a transformation component that facilitates joins, including both inner and outer joins. In this guide, you will learn to perform an inner join on &lt;STRONG&gt;tMap&lt;/STRONG&gt; and manage both matched and rejected data.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;This procedure was written with:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Talend Studio 8.0.1&lt;/LI&gt;
&lt;LI&gt;Oracle JDK build&amp;nbsp;17.0.11&lt;/LI&gt;
&lt;LI&gt;Windows 11 Enterprise&lt;/LI&gt;
&lt;LI&gt;MySQL 8.0.31-community-nt&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Talend verified this procedure to be compatible with all versions of Talend Studio.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Procedure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Requirement description&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;In this example, there are two data sources: a text file named &lt;STRONG&gt;in.txt&lt;/STRONG&gt; and a table named &lt;STRONG&gt;person&lt;/STRONG&gt; in MySQL database. The data of each data source are read as follows:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;in.txt&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;id;name;gender
1;Shong;boy
2;Ross;boy
3;Sabrina;girl
4;Elisa;girl&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;person table&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;user_id&amp;nbsp;&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;country&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;email&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Shong&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;CN&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;shong@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;4&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Elisa&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;FR&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;elisa@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This example reads the data from the &lt;STRONG&gt;in.txt&lt;/STRONG&gt; file as a main flow, and then does an inner join with the data read from the &lt;STRONG&gt;person&lt;/STRONG&gt; table on a &lt;STRONG&gt;tMap&lt;/STRONG&gt; component based on the &lt;STRONG&gt;id&lt;/STRONG&gt; column from the file and the &lt;STRONG&gt;user_id&lt;/STRONG&gt; column from the table. The join will get rows, including the external columns from lookup table, if the &lt;STRONG&gt;id&lt;/STRONG&gt; already exists in the table, and will reject rows if the &lt;STRONG&gt;id&lt;/STRONG&gt; does not exist in the table.&lt;/P&gt;
&lt;P&gt;Here is the expected output:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Matched rows:&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;id&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;gender&amp;nbsp;&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;email&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Shong&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;shong@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;4&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Elisa&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;girl&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;elisa@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Unmatched rows:&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;id&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;gender&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;THEAD&gt;&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;2&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Ross&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;boy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;3&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Sabrina&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;girl&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Create a demo job&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;Create a demo Job called &lt;STRONG&gt;InnerJoinDemo&lt;/STRONG&gt;. The Job design is as follows:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt;: reads data from &lt;STRONG&gt;in.txt&lt;/STRONG&gt; file.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tDBInput_1&lt;/STRONG&gt;: reads data from &lt;STRONG&gt;person&lt;/STRONG&gt; table.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tMap_1&lt;/STRONG&gt;: performs an inner join and generates two output tables.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tLogRow_1&lt;/STRONG&gt; and &lt;STRONG&gt;tLogRow_2&lt;/STRONG&gt;: print output data to the console.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="exampleJob.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170200i4C568E64ADB73081/image-size/large?v=v2&amp;amp;px=999" role="button" title="exampleJob.png" alt="exampleJob.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The following images show the detailed component settings:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tFileInputDelimitedSettings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170203iD1169F7D6C9F0335/image-size/large?v=v2&amp;amp;px=999" role="button" title="tFileInputDelimitedSettings.png" alt="tFileInputDelimitedSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tDBInput_1&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tMysqlInputSettings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170207iB1F2994F3CC0679F/image-size/large?v=v2&amp;amp;px=999" role="button" title="tMysqlInputSettings.png" alt="tMysqlInputSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMap_1&lt;/STRONG&gt;: performs an inner join between the two incoming data flows, and generates two output tables: one table for the matched rows, and another for the unmatched rows.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tMapSettings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170210iA9EE83016FC5441A/image-size/large?v=v2&amp;amp;px=999" role="button" title="tMapSettings.png" alt="tMapSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tLogRow_1&lt;/STRONG&gt;, &lt;STRONG&gt;tLogRow_2&lt;/STRONG&gt;: print the output data to the console with table model.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tLogRowSettings.png" style="width: 677px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170211iC52FCD3E7D19D1DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="tLogRowSettings.png" alt="tLogRowSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Execute job&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;Execute the Job. The console shows the following results:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Starting job InnerJoinDemo at 17:37 05/08/2024.
[statistics] connecting to socket on port 3960
[statistics] connected
.--+-----+------+--------------.
|          tLogRow_1           |
|=-+-----+------+-------------=|
|id|name |gender|email         |
|=-+-----+------+-------------=|
|1 |Shong|boy   |shong@qlik.com|
|4 |Elisa|girl  |elisa@qlik.com|
'--+-----+------+--------------'

.--+-------+------.
|    tLogRow_2    |
|=-+-------+-----=|
|id|name   |gender|
|=-+-------+-----=|
|2 |Ross   |boy   |
|3 |Sabrina|girl  |
'--+-------+------'

[statistics] disconnected

Job InnerJoinDemo ended at 17:37 05/08/2024. [Exit code  = 0]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The results show that all matched rows are output into &lt;STRONG&gt;tLogRow_1&lt;/STRONG&gt; and all unmatched rows are output into &lt;STRONG&gt;tLogRow_2&lt;/STRONG&gt;.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 06 Aug 2024 02:09:07 GMT</pubDate>
    <dc:creator>TalendSolutionExpert</dc:creator>
    <dc:date>2024-08-06T02:09:07Z</dc:date>
    <item>
      <title>Qlik Talend Data Integration: Doing an inner join using a tMap component</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-Data-Integration-Doing-an-inner-join-using-a-tMap/ta-p/2150835</link>
      <description>&lt;DIV class="talend-tkb-migrated-content"&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Overview&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;To achieve desired results, it's often necessary to perform joins between data sources. &lt;STRONG&gt;tMap&lt;/STRONG&gt; is a transformation component that facilitates joins, including both inner and outer joins. In this guide, you will learn to perform an inner join on &lt;STRONG&gt;tMap&lt;/STRONG&gt; and manage both matched and rejected data.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;This procedure was written with:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Talend Studio 8.0.1&lt;/LI&gt;
&lt;LI&gt;Oracle JDK build&amp;nbsp;17.0.11&lt;/LI&gt;
&lt;LI&gt;Windows 11 Enterprise&lt;/LI&gt;
&lt;LI&gt;MySQL 8.0.31-community-nt&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Talend verified this procedure to be compatible with all versions of Talend Studio.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Procedure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Requirement description&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;In this example, there are two data sources: a text file named &lt;STRONG&gt;in.txt&lt;/STRONG&gt; and a table named &lt;STRONG&gt;person&lt;/STRONG&gt; in MySQL database. The data of each data source are read as follows:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;in.txt&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;id;name;gender
1;Shong;boy
2;Ross;boy
3;Sabrina;girl
4;Elisa;girl&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;person table&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;user_id&amp;nbsp;&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;country&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;email&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Shong&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;CN&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;shong@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;4&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Elisa&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;FR&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;elisa@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This example reads the data from the &lt;STRONG&gt;in.txt&lt;/STRONG&gt; file as a main flow, and then does an inner join with the data read from the &lt;STRONG&gt;person&lt;/STRONG&gt; table on a &lt;STRONG&gt;tMap&lt;/STRONG&gt; component based on the &lt;STRONG&gt;id&lt;/STRONG&gt; column from the file and the &lt;STRONG&gt;user_id&lt;/STRONG&gt; column from the table. The join will get rows, including the external columns from lookup table, if the &lt;STRONG&gt;id&lt;/STRONG&gt; already exists in the table, and will reject rows if the &lt;STRONG&gt;id&lt;/STRONG&gt; does not exist in the table.&lt;/P&gt;
&lt;P&gt;Here is the expected output:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Matched rows:&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;id&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;gender&amp;nbsp;&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;email&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;1&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Shong&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;boy&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;shong@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;4&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Elisa&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;girl&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;elisa@qlik.com&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Unmatched rows:&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH colspan="1" rowspan="1"&gt;id&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;name&lt;/TH&gt;
&lt;TH colspan="1" rowspan="1"&gt;gender&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;THEAD&gt;&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;2&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Ross&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;boy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="1" rowspan="1"&gt;3&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;Sabrina&lt;/TD&gt;
&lt;TD colspan="1" rowspan="1"&gt;girl&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Create a demo job&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;Create a demo Job called &lt;STRONG&gt;InnerJoinDemo&lt;/STRONG&gt;. The Job design is as follows:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt;: reads data from &lt;STRONG&gt;in.txt&lt;/STRONG&gt; file.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tDBInput_1&lt;/STRONG&gt;: reads data from &lt;STRONG&gt;person&lt;/STRONG&gt; table.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tMap_1&lt;/STRONG&gt;: performs an inner join and generates two output tables.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;tLogRow_1&lt;/STRONG&gt; and &lt;STRONG&gt;tLogRow_2&lt;/STRONG&gt;: print output data to the console.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="exampleJob.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170200i4C568E64ADB73081/image-size/large?v=v2&amp;amp;px=999" role="button" title="exampleJob.png" alt="exampleJob.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The following images show the detailed component settings:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tFileInputDelimited_1&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tFileInputDelimitedSettings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170203iD1169F7D6C9F0335/image-size/large?v=v2&amp;amp;px=999" role="button" title="tFileInputDelimitedSettings.png" alt="tFileInputDelimitedSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tDBInput_1&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tMysqlInputSettings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170207iB1F2994F3CC0679F/image-size/large?v=v2&amp;amp;px=999" role="button" title="tMysqlInputSettings.png" alt="tMysqlInputSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tMap_1&lt;/STRONG&gt;: performs an inner join between the two incoming data flows, and generates two output tables: one table for the matched rows, and another for the unmatched rows.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tMapSettings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170210iA9EE83016FC5441A/image-size/large?v=v2&amp;amp;px=999" role="button" title="tMapSettings.png" alt="tMapSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tLogRow_1&lt;/STRONG&gt;, &lt;STRONG&gt;tLogRow_2&lt;/STRONG&gt;: print the output data to the console with table model.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tLogRowSettings.png" style="width: 677px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170211iC52FCD3E7D19D1DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="tLogRowSettings.png" alt="tLogRowSettings.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Execute job&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;Execute the Job. The console shows the following results:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Starting job InnerJoinDemo at 17:37 05/08/2024.
[statistics] connecting to socket on port 3960
[statistics] connected
.--+-----+------+--------------.
|          tLogRow_1           |
|=-+-----+------+-------------=|
|id|name |gender|email         |
|=-+-----+------+-------------=|
|1 |Shong|boy   |shong@qlik.com|
|4 |Elisa|girl  |elisa@qlik.com|
'--+-----+------+--------------'

.--+-------+------.
|    tLogRow_2    |
|=-+-------+-----=|
|id|name   |gender|
|=-+-------+-----=|
|2 |Ross   |boy   |
|3 |Sabrina|girl  |
'--+-------+------'

[statistics] disconnected

Job InnerJoinDemo ended at 17:37 05/08/2024. [Exit code  = 0]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The results show that all matched rows are output into &lt;STRONG&gt;tLogRow_1&lt;/STRONG&gt; and all unmatched rows are output into &lt;STRONG&gt;tLogRow_2&lt;/STRONG&gt;.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Aug 2024 02:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-Data-Integration-Doing-an-inner-join-using-a-tMap/ta-p/2150835</guid>
      <dc:creator>TalendSolutionExpert</dc:creator>
      <dc:date>2024-08-06T02:09:07Z</dc:date>
    </item>
  </channel>
</rss>

