I'm programming for Android and using the native database ( SQLite
).
I want to make a query in the table of products sorted by name, but when doing SELECT
like this:
SELECT * FROM produtos ORDER BY nome;
it returns, for example:
Alvejante
Cloro
Sabão Liquido
Água Sanitária
I want SELECT
to ignore the score and have the following return:
Água Sanitária
Alvejante
Cloro
Sabão Liquido
Is it possible to do this?