Creating materialized view from a query in Azure Data Explorer (Kusto)
Need some help with Kusto (Azure Data Explorer). Is it possible to convert this query into a materialized view? customobject | join kind=inner ( customobject | summarize max_dp_adf_copy_start_time = max(dp_adf_copy_start_time) by accountId, id ) on $left.accountId == $right.accountId and $left.id…