Phenom needs a simple employee directory query for its internal Employee Experience platform. Write a single-line PostgreSQL query that retrieves the name of every employee from the employee table.
| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| department | VARCHAR(80) | Employee's department, if assigned |
| employment_status | VARCHAR(30) | Current employment status |
| work_email | VARCHAR(150) | Employee's work email address |