How to delete the records in sobject that are 3 days old records in Salesforce?
Sample Batch: global class OldRecordDeleteBatch implements Database.Batchable<sObject> { global Database.QueryLocator start(Database.BatchableContext bc) { Date threeDaysBefore = System.today().addDays(-3); String SOQL = ....