Your question is Employees Missing Building Number. Start with the requirements and the two tables 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.
Find the employees who were in the company but did not have a building number. (Use JOIN).
Asked in the Virtual Onsite stage. SQL question requiring JOIN operations.
| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Primary key for each employee |
| employee_name | VARCHAR(100) | Employee full name |
| status | VARCHAR(20) | Employment status |
| Column | Type | Description |
|---|---|---|
| employee_id | INT | References employees.employee_id |
| building_number | VARCHAR(10) | Assigned building number, may be missing |