As per the documentation - https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/reduceoperator
"reduce" operator returns a table with three columns (Pattern, Count, and Representative).
For example, the result of reduce by city might include:
TABLE 1
Pattern Count Representative
San * 5182 San Bernard
Saint * 2846 Saint Lucy
Now what if I want to get some extra column with this result? Is there any way to do so? Basically I want to use that extra column as "foreignkey " for some other table.
Assuming that this is the limitation of "reduce" operator, so is there any way to get this result in a "TEMP Table", like in MSSQLServer we have a way to store an output of sql queriy into a #tempTable?