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
TraceyTracey 

SOQL Query

Could somebody show me how to use SOQL to return a list of cases but to include the name of the person who logged the case (ContactID.name)?

 

What is the best tool to create these SOQL? I tried Apex Explorer but it keeps on crashing on my machine.

 

Thanks

 

Stephen

Best Answer chosen by Admin (Salesforce Developers) 
yagnayagna

use 'Contact.Name'.

 

Ex: Select Id, Contact.Name from Case LIMIT 10

 

You can use Ajax Tools, it an Appexchange app and it works better in Firefox.

 

Message Edited by yagna on 06-10-2009 07:15 AM