Can you do an inner join in SQL?
Demonstrate the query using the provided employees and departments tables. Return only employees with a matching department record.
employee_id, employee_name, and department_nameemployee_id ascending| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| department_id | INT | Referenced department identifier |
| Column | Type | Description |
|---|---|---|
| department_idPK | INT | Unique department identifier |
| department_name | VARCHAR(100) | Department name |