By default , relational databases create indexes using increasingly ordered binary tree structures. However there is the possibility of creating it in a decreasing way as well.
My question is whether (and when) it is recommended to use it. For example:
SELECT nome
FROM pessoa
WHERE data_cadastro >= '2014-01-01'
ORDER BY data_cadastro DESC
In SQL above, considering WHERE
and ORDER BY
, a decreasing index in column data_cadastro
would improve performance?