ROQL Statement
Content
Hi,
I noticed that the maximum of 3003 record can query each time for statement below.
select *, emails.*
from Contact where Updatedtime >= '2015-06-08T06:00:00Z' and c$person_status is null (result 3003 records converted)
select *, emails.*
from Contact where Updatedtime >= '2015-06-28T06:00:00Z' and c$person_status is null (result 3003 records converted)
select *, emails.*
from Contact where Updatedtime >= '2015-07-14T06:00:00Z' and c$person_status is null (result 3003 records converted)
But if I used this statement, I able to get all the records with today as latest records
select *
from Contact where Updatedtime >= '2015-06-08T06:00:00Z' and c$person_status is null
0