You need to sign in to do that
Don't have an account?
SOQL Problem 1
Give me all the duplicate accounts for an Account 123??
Select count(id)
from Account
Where Name = 123
Group by Name
Having Count(id) > 1
its give error..
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Use 123 as string like this:
Select count(id) from Account Where Name = '123' Group by Name Having Count(id) > 1
If this help, please mark as best answer so will help others also.
Thanks,
Neetu
All Answers
Use 123 as string like this:
Select count(id) from Account Where Name = '123' Group by Name Having Count(id) > 1
If this help, please mark as best answer so will help others also.
Thanks,
Neetu