Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all articles
Browse latest Browse all 2504

ROQL Statement (1 Comment)

$
0
0

Topic by Hwee Siang Sow

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 (result 5227 records converted with latest record as of today)

 

Is there a limit to query a contact table with child tables?

Regards,

HS

Version

Aug 13

Viewing all articles
Browse latest Browse all 2504

Trending Articles