Query Details
Use Case: Compare the current clock speed against the maximum clock speed to identify if the CPU is being overclocked. Query: Cpu | project ProcessorId, CurrentClockSpeed, MaxClockSpeed, Overclocked = iif(CurrentClockSpeed > MaxClockSpeed, 'Yes', 'No')
The query compares the current clock speed of a CPU with its maximum clock speed to determine if the CPU is being overclocked. It projects the ProcessorId, CurrentClockSpeed, MaxClockSpeed, and a column called Overclocked which indicates whether the CPU is overclocked or not.

Ugur Koc
Released: February 4, 2024
Tables
Keywords
Operators