Write a SQL query to retrieve customer information from a database for a Happy Money reporting use case.
Use the customers table and return only customers whose status is active.
customer_id, customer_name, email, and customer_status.customer_id in ascending order.| Column | Type | Description |
|---|---|---|
| customer_idPK | INT | Unique customer identifier |
| customer_name | VARCHAR(100) | Customer's full name |
| VARCHAR(255) | Customer email address | |
| customer_status | VARCHAR(20) | Current customer account status |