Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. SELECT id, Parent.id, noURL__c, Parent.noURL__c
  2. FROM Account
  3. WHERE noURL__c = true
  4.  
  5. SELECT id, Parent.id, noURL__c, Parent.noURL__c
  6. FROM Account
  7. WHERE Parent.noURL__c = true
  8.  
  9. SELECT id, Parent.id, noURL__c, Parent.noURL__c
  10. FROM Account
  11. WHERE noURL__c = true OR Parent.noURL__c = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement