Is there pagination for tables with DataStore?

As the title says, I can’t seem to figure out if there is pagination for tables in DataStore? For example if a player has 100,000 items saved in a table inside a DataStore I would have to query that table with 100 items inside of it everytime I need it. This is bad practice, is there a way around this?

Simple answer: no.

But you can always find a workaround for it by saving a separate table with the first 100 items.

yeah I figured I just created my own. Thanks!