You need to sign in to do that
Don't have an account?
yuvraj.chaudhari88@gmail.com
PLZ REPLY ME FAST--
write an SOQL to fetch all the opportunities where more than one record exist with same mame and name contain "ABC"
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
You have to use apex logic(for loop) for achieve " where more then one record" exist. So just write a simple query
select id,name from opportunity where Name like '%ABC%'
and use apex logic to filter out the results.