I am sure I am just having a brain freeze and this one is bonehead simple, but in SQLite when I execute the following query it appears to be ordering the results:
SELECT col_Referncia FROM lookup_57c5f58b0c4543df97fe5929498aa2bf
When I do the wild card on the same table, it does not ( I am only showing that column again, but there are other columns).
SELECT * FROM lookup_57c5f58b0c4543df97fe5929498aa2bf
The way the code is written I must specify the column. Is there a way to have it return in a non-sorted fashion (like I see with wildcard)?
The table does have several columns and indexes. I suspect this has something to do with the indexes?