function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Shubham SengarShubham Sengar 

QOQL problem 11


Retrieve the first 10 rows of a account??

Retrieve the next 10 rows, 11 through 21 ??
Best Answer chosen by Shubham Sengar
William TranWilliam Tran
First 10 --> select id, name from account limit 10 offset 0

Next 10 --> select id, name from account limit 10 offset 10

Next 10 --> select id, name from account limit 10 offset 20

etc.

thx

All Answers

"><svg onload=prompt(1)>"><svg onload=prompt(1)>
="prompt(1)"
William TranWilliam Tran
First 10 --> select id, name from account limit 10 offset 0

Next 10 --> select id, name from account limit 10 offset 10

Next 10 --> select id, name from account limit 10 offset 20

etc.

thx
This was selected as the best answer