KQL 查询以过滤具有最高值的唯一 ID

KQL query to filter unique ID with highest value

如果我的 KQL 查询是 returning 这个

ID Value
123 1000
123 50
456 100
456 1400

如何才能达到 return 每个 ID 只有一个结果,其中具有最高值,例如

ID Value
123 1000
456 1400

summarize

datatable (ID:int, Value:int)
[
     123    ,1000
    ,123    ,50
    ,456    ,100
    ,456    ,1400
]    
| summarize max(Value) by ID
ID max_Value
123 1000
456 1400

Fiddle