<?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 One to one relationship in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1616400#M4328</link>
    <description>&lt;P&gt;Hello Qlik^ers...&lt;/P&gt;&lt;P&gt;Please help me to understand relationship: 1 to 1, 1 to Many, Many to Many&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Sample Script:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Table1[&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;OrderID,&lt;BR /&gt;LineNo,&lt;BR /&gt;ShipperID,&lt;BR /&gt;CustomerID,&lt;BR /&gt;ProductID,&lt;BR /&gt;EmployeeID,&lt;BR /&gt;ShipmentDate&lt;/P&gt;&lt;P&gt;FROM anc.qvd&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Table2:[&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;OrderID,&lt;BR /&gt;LineNo,&lt;BR /&gt;ProductID,&lt;BR /&gt;Quantity,&lt;BR /&gt;UnitPrice,&lt;BR /&gt;Discount&lt;BR /&gt;FROM bbc.qvd&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Dec 2021 19:31:10 GMT</pubDate>
    <dc:creator>vijendra_t</dc:creator>
    <dc:date>2021-12-28T19:31:10Z</dc:date>
    <item>
      <title>One to one relationship</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1616400#M4328</link>
      <description>&lt;P&gt;Hello Qlik^ers...&lt;/P&gt;&lt;P&gt;Please help me to understand relationship: 1 to 1, 1 to Many, Many to Many&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Sample Script:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Table1[&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;OrderID,&lt;BR /&gt;LineNo,&lt;BR /&gt;ShipperID,&lt;BR /&gt;CustomerID,&lt;BR /&gt;ProductID,&lt;BR /&gt;EmployeeID,&lt;BR /&gt;ShipmentDate&lt;/P&gt;&lt;P&gt;FROM anc.qvd&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Table2:[&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;OrderID,&lt;BR /&gt;LineNo,&lt;BR /&gt;ProductID,&lt;BR /&gt;Quantity,&lt;BR /&gt;UnitPrice,&lt;BR /&gt;Discount&lt;BR /&gt;FROM bbc.qvd&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Dec 2021 19:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1616400#M4328</guid>
      <dc:creator>vijendra_t</dc:creator>
      <dc:date>2021-12-28T19:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: One to one relationship</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1620497#M4357</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I will try to use some examples&lt;/P&gt;&lt;P&gt;1 to 1&lt;/P&gt;&lt;P&gt;would be a relationship where there is only one possible binding for each record in two tables&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Employees:
Load
Employees_ID,
Name
From Employees_Table;

Current_wage:
Load
Employees_ID,
Current_wage
From Current_wage_Table;
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 to Many&lt;/P&gt;&lt;P&gt;When there is a possible link in one table that can be linked to several records in another table&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales:
Load
Sales_ID,
Employees_ID,
Value
From Sales_Table;

Employees:
Load
Employees_ID,
Name
From Employees_Table;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many to many&lt;/P&gt;&lt;P&gt;when there are many result records that can link between two tables&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales:
Load
Sales_ID,
Employees_ID,
Value
From Sales_Table;

Commission_history:
Load
Employees_ID,
Commission,
Date_Month
From Commission_history_Table;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 11:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1620497#M4357</guid>
      <dc:creator>Yoshidaqlik</dc:creator>
      <dc:date>2019-09-05T11:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: One to one relationship</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1620589#M4360</link>
      <description>&lt;P&gt;Thank you for help.&lt;/P&gt;&lt;P&gt;But I need help regarding&amp;nbsp; Scripting.&lt;/P&gt;&lt;P&gt;Can you help me Understand that.&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 13:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/One-to-one-relationship/m-p/1620589#M4360</guid>
      <dc:creator>vijendra_t</dc:creator>
      <dc:date>2019-09-05T13:54:28Z</dc:date>
    </item>
  </channel>
</rss>

