Skip to content

Instantly share code, notes, and snippets.

@pchittum
Created March 1, 2017 13:45
Show Gist options
  • Select an option

  • Save pchittum/b5909964d3fb426f3d619ea5eaaa41fa to your computer and use it in GitHub Desktop.

Select an option

Save pchittum/b5909964d3fb426f3d619ea5eaaa41fa to your computer and use it in GitHub Desktop.
Trailhead code critiques
//alternative or additional query to show sub query that is not unbounded
for(Account a : [SELECT Id,Name
FROM Account
WHERE Id IN :Trigger.New
AND Id NOT IN (SELECT AccountId
FROM Opportunity
WHERE AccountId in : Trigger.New)]){
System.debug(a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment