In SQLite, I have a contact table with one of the columns last_name. How can I get a unique set of first characters of all surnames in a table? Something like that ['a', 'b', 'd', 'f', 'w']. This will help if the request is case insensitive. I am using SQLite on Android. Thanks
source
share