when I using select command without order by sub-command:
select acolumn from table
The result sequence is order by id column asc as default( or in the sequence that the record was inserted into the table, I am not sure). but I want it order by desc without order by sub-command.
I tried create desc index on id column, it does not help.
Is there anyway to achieve this?
Any help is appreciated. Thanks.