Write a simple SQL query to extract data from a customer table for Unknowns.
Assume the table is named customers. Return the requested customer fields for every customer, ordered by customer ID.
customer_id, customer_name, and emailcustomer_id ascending| Column | Type | Description |
|---|---|---|
| customer_idPK | INT | Unique customer identifier |
| customer_name | VARCHAR(120) | Customer's full name |
| VARCHAR(255) | Customer email address | |
| status | VARCHAR(20) | Customer account status |
| city | VARCHAR(80) | Customer's city |