Find all Account records which have an associated Opportunity which has been lost
select id, name ,(select id from opportunities where StageName='Closed Won') from account
Read MorePosted by vigorous-zhukovsky | Apr 30, 2020 | SOQL |
select id, name ,(select id from opportunities where StageName='Closed Won') from account
Read MorePosted by vigorous-zhukovsky | Apr 30, 2020 | SOQL |
SELECT Id, Subject ,What.type, WhatID FROM Event Where What.Type IN('Account', 'Opportunity')
Read MorePosted by vigorous-zhukovsky | Apr 29, 2020 | Deployment |
Sandbox is a copy of your production organization. You can create multiple copies of your organization in separate environments for different purposes such as development, testing, and training, without compromising the data and...
Read MorePosted by vigorous-zhukovsky | Apr 28, 2020 | Apex-LIB |
List <integer> listOfNo= new List<integer>(); listOfNo.add(1); listOfno.add(2); listOfNo.add(3); ListOfno.add(4); system.debug('List Of number :...
Read MorePosted by vigorous-zhukovsky | Apr 8, 2020 | Apex |
List<integer>listNo =new List<integer>(); integer maxno=100; for(integer i =0 ;i<maxno ;i++){ listNo.add(i); } system.debug('List Of Numbers...
Read More
Recent Comments