Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Combining Data with Joins | Data Flows and Transformations in ADF
Introduction to Data Engineering with Azure

bookCombining Data with Joins

メニューを表示するにはスワイプしてください

Data often resides in multiple tables or sources, making it essential to merge information to derive meaningful insights. In this chapter, you'll learn how to use joins in Azure Data Factory (ADF) Data Flows to merge datasets efficiently

ADF supports several types of joins:

  • Inner Join: combines rows where keys match in both datasets;
  • Left Outer Join: includes all rows from the left dataset and matching rows from the right;
  • Right Outer Join: includes all rows from the right dataset and matching rows from the left;
  • Full Outer Join: includes all rows from both datasets, with nulls for unmatched rows;
  • Cross Join: produces a Cartesian product of both datasets.

How to Combine Data with Joins in ADF

  1. Create new Data Flow or use existing one;
  2. Drag two Source Transformations onto the Data Flow canvas and connect them to the respective SQL tables;
  3. Drag a Join Transformation from the toolbox onto the canvas and connect the two sources to it;
  4. In the Join Transformation settings, select the Join Type and set the Join Condition;
  5. Add a Derived Column Transformation or any other transformation after the join to get some insights;
  6. Add a Sink Transformation to store the output;
  7. Validate the Data Flow configuration to ensure everything is correct.
question mark

In the Join Transformation settings, which of the following must you define?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  3

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 3.  3
some-alt