I am trying to get the following query to display the results in alphabetical order by City except for the fact that I want "Berlin" to appear at the top of the list
So the results would look something like
- Berlin
- Algeria
- Australia
- Fiji
- Greece
- ...
Hope that makes sense,
I currently have the following...
SELECT CompanyName, City
FROM customers
ORDER BY case when City = 'Berlin' END