User283571144 posted
Hi sidu,
As far as I know, to sort in reverse order, you could add the DESC (descending) keyword to the name of the column in the ORDER BY clause that you are sorting by.
The default is ascending order; this can be specified explicitly using the ASC keyword.
More details, you could refer to below select exmaple:
select * from emp ORDER BY [Your column name] DESC
Related article:
https://dev.mysql.com/doc/refman/8.0/en/select.html
Best Regards,
Brando