Your question is Join Employees and Departments. Start with the requirements and the one table on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Hyundai Autoever America maintains an employee directory for internal software and operations reporting. Write a PostgreSQL query that returns each employee together with the department name stored in the directory.
| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| job_title | VARCHAR(100) | Current job title |
| department_name | VARCHAR(100) | Assigned department name, when available |