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
AviKesariAviKesari 

SOQL help with workbench

I'm trying to get the Id's of the account with most recent createddate and created by fields of Task. Please help me with SOQL, Thanks!
Best Answer chosen by AviKesari
Naren9Naren9
Try like below:
Select Id,CreatedDate,Account.Id,Account.Name from Task
You can add the where condition to the above.

Thanks,
Naren