Cheatsheet

Nested SOQL Queries

Estimated reading: 1 minute 28 views

Accounts that have Invoice

				
					 SELECT Id, Name 
 FROM Account 
 WHERE Id IN (SELECT AccountId FROM Invoice__c) 
				
			
Share this Doc

Nested SOQL Queries

Or copy link

CONTENTS