Skip to content

Join #13

Answered by SQLtattoo
fpsilva-source asked this question in Q&A
Discussion options

You must be logged in to vote

Hello, there is the logic of the left and right table.
Let's say you have the following 2 tables: T1, T2

T1 //is the $left table 
| project procId, procName
| join kind=inner (
         T2 //is the $right table 
         | project _procId, _procName
) on $left.procID == $right._procId

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.

Replies: 1 comment

Comment options

You must be logged in to vote
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
Category
Q&A
Labels
None yet
2 participants