我正在使用以下查询获取100天前创建的记录,然后将其删除。
list exList = [从Exception__c中选择ID,其中NOT(CreatedDate = LAST_N_DAYS:100)限制为10000]; system.debug('Exception__c临时修复scList->'+ exList); 删除exList;
此查询可以进一步优化还是有更好的方法?
list exList = [从Exception__c中选择ID,其中NOT(CreatedDate = LAST_N_DAYS:100)限制为10000]; system.debug('Exception__c临时修复scList->'+ exList); 删除exList;
答案 0 :(得分:0)
通常,您要避免在查询中使用否定条件,以便有选择性。在你的情况下我会做
Where createddate > last_N_days: 100