I have a SQLite
database
in an Android
app that has a column
named "locations".
Example
Locations
Home
Home
Home
School
Work
I'd like to run a query
that returns the String
Home
because that is the String
that occurs most frequently in this column. I've seen some similar posts but nothing using SQLite
for an Android
app.
Note
I'm looking for the least amount of code possible.
Thanks for any help!