Given an SQL table with names, salaries, and emails, write an SQL query that returns the row for a particular email.
Use the employee_profiles table and search for maya.chen@gemini.example.
employee_id, name, salary, and email in that order.| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| name | VARCHAR(100) | Employee's full name |
| salary | NUMERIC(12,2) | Annual salary |
| VARCHAR(255) | Employee email address |