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
Shubham SengarShubham Sengar 

SOQL problem 3


Give me a list of all the case with status ‘new’ with their contact name and account name.??
Best Answer chosen by Shubham Sengar
William TranWilliam Tran
Something like this should do it

select casenumber ,contact.name, Account.name from case where status ='new'