Your question is SQL Name Prefix Query. 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.
ISS STOXX maintains employee records used in internal quality assurance and access-control workflows. Write a PostgreSQL query to return employees whose names start with the letter A, regardless of whether the stored name uses uppercase or lowercase letters.
employee_name column.A case-insensitively and sort the results alphabetically.| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| department | VARCHAR(80) | Employee's department |