I have a SQLite database that I am trying to sort by Alphabetical order. The problem is, SQLite doesn't seem to consider A=a during sorting, thus I get results like this:
A
B
C
T
a
b
c
g
I want to get:
A
a
b
B
C
c
g
T
What special SQL thing needs to be done that I don't know about?
SELECT * FROM NOTES ORDER BY title
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…