Example: I want to find NATO accounts that say NATO ___ so I can't use equals, but things like "Donato's" are appearing as well.
1 Answer
Try including the space in your LIKE clause, i.e.
SELECT Id FROM Account WHERE Name LIKE 'NATO %' Example: I want to find NATO accounts that say NATO ___ so I can't use equals, but things like "Donato's" are appearing as well.
Try including the space in your LIKE clause, i.e.
SELECT Id FROM Account WHERE Name LIKE 'NATO %'