User Story
As a Salesforce developer, I need to retrieve a list of contacts related to a set of accounts identified by their Ids.
Code
Map<Id, Account> mapAc = new Map<Id, Account>([SELECT Id, Name FROM Account]);
List<Contact> conList = [SELECT Id, Name FROM Contact WHERE AccountId IN: mapAc.keySet()];
Video
Video does not exists.