Hi @Mkk1, To join a silver table from one Delta Live Tables (DLT) pipeline to another silver table from a different DLT pipeline, you can follow these steps:
-
Read the Silver Tables:
-
Perform the Join:
- Once you have both silver tables (
silver_one
and silver_two
), you can perform the join operation based on the desired columns. Use appropriate join keys or conditions to combine the data.
-
Write the Resulting Table:
- After joining the tables, create a new table (e.g., a gold table) that contains the combined data. You can write this resulting table back to your DLT pipeline.
Remember to adjust the table names (silver_table_one
and silver_table_two
) and any other specifics according to your actual DLT pipeline configurations. Happy joining! ๐๐