A developer needs to implement a system audit feature that allows users, assigned to a custom profile named "Auditors", to perform searches against the historical records in the Account object. The developer must ensure the search is able to return history records that are between 6 and 12 months old. Given the code below, which select statement should be inserted as a valid way to retrieve the Account History records?4445
Java
Date initialDate = System.Today().addMonths(-12);
Date endDate = System.Today().addMonths(-6);
// Insert SELECT statement here
Submit