Kusto -每个id的最大日期的所有数据



Kusto -每个id的最大日期的所有数据

你好,我正在努力查询,希望有人能帮助我这个话题。:)我想获得与最新时间戳相关的每个ID的所有数据。我的源代码看起来像这样:

其他列tbody> <<tr>约会
时间戳 ID
ID的其他数据1
ID的其他数据2
日期BID B其他数据1
日期BID B其他数据2
日期CID的其他数据1
日期CID的其他数据2
日期DID B其他数据1
日期DID B其他数据2
选项1
datatable(Timestamp:int, ID:string, OtherColumns:string)
[
4 ,"A" ,"other data 1"
,4 ,"A" ,"other data 2"
,3 ,"B" ,"other data 1"
,3 ,"B" ,"other data 2"
,2 ,"A" ,"other data 1"
,2 ,"A" ,"other data 2"
,1 ,"B" ,"other data 1"
,1 ,"B" ,"other data 2"
]
|   partition hint.strategy=native by ID
(
order by Timestamp desc
|   extend  rr = row_rank(Timestamp)
|   where rr == 1
|   project-away rr
)
<表类>时间戳IDOtherColumnstbody><<tr>4其他数据14其他数据23B其他数据13B其他数据2

相关内容

  • 没有找到相关文章

最新更新