Join #13
Answered
by
SQLtattoo
fpsilva-source
asked this question in
Q&A
Join
#13
-
Hello, How do I make the join between two tables with different fields between them? |
Beta Was this translation helpful? Give feedback.
Answered by
SQLtattoo
Jul 20, 2022
Replies: 1 comment
-
Hello, there is the logic of the left and right table.
So you can chain tables like that and use $left, $right in the sequence to reference the table and its column name. Check the reference MS Doc here https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/joinoperator?pivots=azuredataexplorer Hope this helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rod-trent
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, there is the logic of the left and right table.
Let's say you have the following 2 tables: T1, T2
So you can chain tables like that and use $left, $right in the sequence to reference the table and its column name.
Check the reference MS Doc here https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/joinoperator?pivots=azuredataexplorer
Hope this helps.