Analyze Query Results Using KQL
Use the Summarize Operator
Use the Render operator to create visualizations
- areachart
- bacchant
- columnchart
- piechart
- scatterchart
- timechart
Build Multi-Table Statements Using KQL
Use the Union operator
Use Join operator
Join Flavor |
Output Records |
Kind=leftanti,
kind=leftantisemi |
Returns
all the records from the left side that don’t have matches from the right. |
Kind=rightant,
kind=rightantisemi |
Returns
all the records from the right side that don’t have matches from the left. |
Kind-unspecified,
kind=innerunique |
Only
one row from the left side is matched for each value of the on key. The output
contains a row for each match of this row which rows from the right. |
Kind=leftsemi |
Returns
all the records from the left side that have matches from the right. |
Kind=rightsemi |
Returns
all the records from the right side that have matches from the left. |
Kind=inner |
Contains
a row in the output for every combination of matching rows from left and
right. |
Kind=leftouter
(or kind=rightouter or kind=fullouter) |
Contains
a row for every row on the left and right, even if it has no match. The unmatched
output cells contain nulls. |
Comments
Post a Comment