kusto(Azure Data Explorer)KQL中查询数据如何使用offset进行分页

How query data use offset in kusto (Azure Data Explorer) KQL for paging

如何实现下面的SQL查询在KQL中使用offset进行分页查询

select * from testtable where code = '88580' limit 1000 offset 111

我在 KQL 中找不到任何函数可以像 SQL

中的偏移量

请注意,对于分页,Kusto 具有用于分页的 Stored query results,可让您轻松过滤行号。

我不知道 KQL 中有 offset,但您可以添加一个 row_number,并按它进行筛选:

let testtable = datatable(code: int) [
    1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
    11, 12, 13, 14, 15
];
testtable
| where code > 0
| serialize
| extend _row=row_number()
| limit 1000
| where _row > 10