Answer
See the explanation
Work Step by Step
Here's the SQL query to retrieve the JobId, StartDate, and TermDate for each job in the accounting department:
```sql
SELECT JobId, StartDate, TermDate
FROM Jobs
JOIN Departments ON Jobs.DepartmentId = Departments.DepartmentId
WHERE Departments.DepartmentName = 'Accounting';
```