I would like to know whether its possible to get a list of distinct values in a SQLite Column without ordering them.
I tried following query. But it automatically orders
What order do you want?
If you want to get the values in the order of first appearance you can do:
select distinct column from table order by min(rowid);