标签: dolphindb
在dolphindb中,是否有一种方法可以对数据进行分页,例如从表的100行到200行中获取数据,就像mysql中的select * from table limit 100,100一样?
select * from table limit 100,100
答案 0 :(得分:2)
在DolphinDB中使用top子句来处理数据分页。
top
(1)选择结果集的前N行。
select top 100 * from table
(2)从#100至#200(不包括)中选择行
select top 100:200 * from table