I have this soql query
SELECT Id, Name,
(SELECT ContactPointAddress.Id, ContactPointAddress.IsDefault FROM ContactPointAddresses)
FROM Account
which list all contact point address for each account. Can i somehow add a where clause so i can get the accounts that does not have any contact point address or where the list of contactpointaddresss dont have one where isDefeault = true
"anti joins" (
NOT IN), like "show me accounts that don't have any contacts, why do we even bother keeping them" would beYou can do similar thing in reports, cross filter.
Try