Your growth team wants to know every country where the business has customers. Using the customers table, return each distinct country in alphabetical order.
customers
| column | type |
|---|---|
| id | INTEGER |
| name | TEXT |
| TEXT | |
| country | TEXT |
| id | name | country | |
|---|---|---|---|
| 1 | Alice | alice@example.com | USA |
| 2 | Bob | bob@example.com | Canada |
| 3 | Carol | carol@example.com | USA |
| 4 | Dave | dave@example.com | Germany |
| country |
|---|
| Canada |
| Germany |
| USA |
USA appears twice but is listed only once. The three distinct countries are sorted alphabetically.