学习目标
1,通过soql找到包含附件的数据
soql找到包含附件的数据
//给出的例子是找出商机下包含附件的数据
List<String> parentIdList = new List<String>();
for(Attachment att:[select id, ParentId from Attachment where ParentId IN (SELECT Id FROM Opportunity) limit 10]){
parentIdList.add(att.ParentId);
}
System.debug(JSON.serialize(parentIdList));
记录一下,一起学习,一起进步!