• Rick Smith 47
  • NEWBIE
  • 5 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi all !
I'm trying to get a Map<String, Contact> with the returned values of this comparison:

I've got two Objects, Contact (Standard) and DFJSON (Custom). These two objects are NOT related.
I need to Select the Contact Objects where Contact.SSN__c = DFJSON.SSN__c and so on with some other fields but I'm not being able to do so sience there's no JOIN in SOQL.

Any idea on how to do this ?
 

Okay folks, I know this is a n00b question but I can't remember if or how to initialize a string with a set of arguments.

 

What I want to do is something like this

 

 

List<String> alphabet = { 'a' , 'b' , 'c' ...  };

 

How can I do this?