mysql ORDERBY code example
Example 1: mysql order
SELECT column_name(s) FROM table_name ORDER BY column_name(s) ASC|DESC
Example 2: sort by mysql
SELECT * FROM table_name ORDER BY col1 ASC;
SELECT * FROM table_name ORDER BY col1 DESC;
SELECT * FROM table_name ORDER BY col1 DESC, col2 ASC;
Example 3: MySQL ORDER BY
SELECT
select_list
FROM
table_name
ORDER BY
column1 [ASC|DESC],
column2 [ASC|DESC],
...;
Example 4: sort by myqsl
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESCl;
Example 5: mysql order by
To get the sorted result from MySQL select statement we use order by clause with SELECT statement.
Syntax:
SELECT column_list FROM tablename ORDER BY column_name1 [ASC][DESC],column_name2 [ASC][DESC],...
Example 6: mysql order by list
ORDER BY FIELD(id, 3, 11, 7, 1)