Forum Discussion

gcongrove's avatar
gcongrove
Copper Contributor
Oct 23, 2019
Solved

Kusto Query help

Here are two separate Kusto queries that provide DriverName, Driver Version, Total_Crashes And DriverName, Driver Version, Total_Installs   I can’t figure out how to combine this into one query ...
  • Yoni's avatar
    Oct 24, 2019
    Try this:

    DHDriverReliability
    | summarize Total_Crashes=sum(DriverKernelModeCrashCount), Total_Installs=count() by DriverName, DriverVersion