Reputation: 11
I want to implement paging on ADX table (kql) like offset, fetch next some rows only we generally do in SQL Server, but I am unable to skip/offset option in kusto query lang. is there any alternative to achieve paging on ADX table records.
Please provide an alternative solution for applying paging on ADX Table records without using row_number().
we have | take or | limit options, looking for an option that skips the records.
Upvotes: 1
Views: 2782
Reputation: 25955
You could look at the example in the documentation, using stored query results: https://learn.microsoft.com/en-us/azure/data-explorer/kusto/management/stored-query-results#pagination
Upvotes: 1