Can you write a simple SQL query to extract customer data from a database?
Use the customers table and return only customers whose status is active. Include the requested customer fields and present the results in ascending customer ID order.
customer_id, customer_name, and emailcustomer_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 | |
| status | VARCHAR(20) | Customer account status |