优化查询以检索100天前创建的记录

时间:2019-04-05 03:57:52

标签: salesforce

我正在使用以下查询获取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;

1 个答案:

答案 0 :(得分:0)

通常,您要避免在查询中使用否定条件,以便有选择性。在你的情况下我会做

Where createddate > last_N_days: 100