HIPO.L
HIPO.L

Reputation: 146

Paging data in dolphindb

In dolphindb, do I have a way to paginate data, such as getting data from 100 to 200 rows of a table, just like select * from table limit 100,100 in mysql?

Upvotes: 1

Views: 87

Answers (1)

Davis Zhou
Davis Zhou

Reputation: 333

Use top clause in DolphinDB to handle data paging.

(1) select top N rows of result set.

select top 100 * from table

(2) select rows from #100 to #200 (exclusive)

select top 100:200 * from table

Upvotes: 1

Related Questions