Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在dolphindb中,我有没有办法对数据进行分页,比如从一个表的100到200行中获取数据,就像select * from table limit 100,100在mysql中一样?
select * from table limit 100,100
top在 DolphinDB 中使用子句来处理数据分页。
top
(1) 选择结果集的前 N 行。
select top 100 * from table
(2) 从#100 到#200 中选择行(不包括)
select top 100:200 * from table