> ## Documentation Index
> Fetch the complete documentation index at: https://parabola.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Combining data

<Frame>
  <iframe src="https://www.youtube.com/embed/xvXljuH19Rc" title="Combining data" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen />
</Frame>

In this lesson, you'll learn the three methods for combining data in Parabola — joining on shared IDs, stacking tables, and comparing tables to find overlap.

***

<Card icon="sparkles" title="Building challenge">
  Now that your delivery report is cleaned up, join it to your shipments data so you can compare delivery dates against each shipment's SLA.

  <Steps>
    <Step title="Copy and paste this prompt into Parabola to combine your data sets">
      ```text wrap theme={null}
      Join my shipments by carrier with my delivery report on "Order_ID" = "Reference".
      ```
    </Step>

    <Step title="Rearrange the combined step so it sits to the right of your two pull data cards">
      The join step should live outside of any card, connected directly to the outputs of both pull steps.
    </Step>
  </Steps>
</Card>

<Accordion title="Check your work">
  <Note>The steps added to your canvas and their exact documentation may differ from what you see below — every AI response is unique. The important thing is that your resulting data set matches what you see here.</Note>

  <Frame>
    <img src="https://mintcdn.com/parabola-7119dfb0/4oJXhMkpxpea7fKi/images/freight-logistics-combine-canvas.png?fit=max&auto=format&n=4oJXhMkpxpea7fKi&q=85&s=abc70fcab53d2124974e9cff9126f5a0" alt="Combine data canvas view" width="3086" height="1902" data-path="images/freight-logistics-combine-canvas.png" />

    <img src="https://mintcdn.com/parabola-7119dfb0/4oJXhMkpxpea7fKi/images/freight-logistics-combine-data.png?fit=max&auto=format&n=4oJXhMkpxpea7fKi&q=85&s=316cc0ecb21790593c2b0d9227085bda" alt="Combine data step results" width="3086" height="1900" data-path="images/freight-logistics-combine-data.png" />
  </Frame>
</Accordion>
