Fortitude Systems uses the Workforce Hub to review employee compensation. Write a PostgreSQL query that identifies employees whose salary is equal to or greater than 10,000.
Unassigned for those employees.| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| first_name | VARCHAR(50) | Employee first name |
| last_name | VARCHAR(50) | Employee last name |
| department_id | INTEGER | References departments.department_id |
| salary | NUMERIC(10,2) | Annual employee salary |
| Column | Type | Description |
|---|---|---|
| department_idPK | INTEGER | Unique department identifier |
| department_name | VARCHAR(100) | Department name |