Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
try it
Comentario:
LOAD CreatedById,
count (Id) as NumeroTotal
Group By CreatedById;
SQL SELECT CreatedById , id
FROM UserFeed ;
Hi vishwaranjan,
Force.com (Salesforce) don't understand "as" because is SOQL.
Thanks,
Cesar