Android sort sqlite query results ignoring case

前端 未结 3 1832
不思量自难忘°
不思量自难忘° 2020-12-30 00:35

just wondering if theres a way of sorting the results of a query ignoring case. Cause at the moment fields starting with an upper case letter are sorted and put on top of th

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-30 01:07

    ORDER BY column COLLATE NOCASE;

    See http://www.sqlite.org/datatype3.html#collation

提交回复
热议问题