SQLite - sorting a table

后端 未结 3 1423
一个人的身影
一个人的身影 2021-01-12 07:15

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

3条回答
  •  走了就别回头了
    2021-01-12 08:11

    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.

提交回复
热议问题