Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

The query returns no data

Hi,

Could someone tell me why this query on force.com returns no data?

Comentario:

LOAD CreatedById;      

SQL SELECT CreatedById , count (Id) NumeroTotal

FROM UserFeed Group By CreatedById;

Thanks

Cesar

2 Replies
Not applicable
Author

try it

Comentario:

LOAD CreatedById,

count (Id)  as  NumeroTotal

Group By CreatedById;      

SQL SELECT CreatedById , id

FROM UserFeed ;

Not applicable
Author

Hi vishwaranjan,

Force.com (Salesforce) don't understand "as" because is SOQL.

Thanks,

Cesar