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:<
SELECT * FROM NOTES ORDER BY UPPER(title)