How can I realize below SQL query use offset for paging query in KQL.
select * from testtable where code = '88580' limit 1000 offset 111
I can't find any function in KQL can like the offset in SQL
How can I realize below SQL query use offset for paging query in KQL.
select * from testtable where code = '88580' limit 1000 offset 111
I can't find any function in KQL can like the offset in SQL
Copyright © 2021 Jogjafile Inc.
Note that for pagination Kusto has Stored query results which is used for pagination, and allows you to filter easily on the row numbers.
I'm not aware of
offset
in KQL, but you can add a row_number, and filter by it: