Thank you for trying to solve the problem together.
I try to use SQL Query in Notebook.
I'd like to tell you the query I'm using, but it's difficult to share.
-Step1 Create TableA
A table called A was created as shown below, and the location was designated as a specific blob storage path.
-Step2 Insert Data
The approximate content of the query is to insert data from tables B and C into table A.
Create Table tableA (
Col1 as int
Col2 as int
Col3 as string
Col4 as string
) using delta location 'Blob storage path'
Insert into tableA
select
B.Col1 AS Col1
B.Col2 AS Col2
C.Col1 AS Col3
C.Col2 AS Col4
from tableB B
Left outer join tableC C