Answer
See the explanation
Work Step by Step
Certainly! Here's the SQL query to retrieve the Name, Address, JobTitle, and Dept of every current employee:
```sql
SELECT Name, Address, JobTitle, Dept
FROM Employees
WHERE EmploymentStatus = 'Current';
```
This query selects the specified columns from the "Employees" table for records where the "EmploymentStatus" is set to 'Current'.