1

Is it possible to specify an offset for select query on a table ?

Kitty Kad
  • 412
  • 1
  • 7

1 Answers1

1

It's not currently supported. Some alternatives are below. But they depend on the use-case

  • Adding an index field to tables and querying on that range
  • Using something like timestamps to filter results
  • Indexing all the results in your own SQL table
Kitty Kad
  • 412
  • 1
  • 7