Since you haven’t specified your problem, Here is the basic mysql
code for your problem.
SELECT column_name
FROM table_name
ORDER BY column_name ASC \ DESC;
ORDER BY
ASC \ DESC
is responsible for making the order. other things are usual mysql
elements
7
solved MYSQL sort by desc or asc