I have a database in SQLlite and I\'d like to sort my table in an alphabetical order. How can I do it?
Is there a way to sort entries using only SQLite or do I have first to
If you want to sort table without case sensitivity or with specific locale (not english) you have to add collation to your sqlite. Here is example how to do it.