How do we use LIKE in SOQL to find accounts that contain the string ABC? Using the following query List<Account> accList = [SELECT Id FROM Account WHERE Name LIKE %ABC%]; Lets say, there is a set of Account Names with these 3 accounts below (abc, xyz, rst) Set<String> setAccNames = new Set<String>(); setAccNames.add('ABC'); setAccNames.add('XYZ'); setAccNames.add('RST'); And …