Sql查询以降序表中的数据

时间:2012-10-12 04:28:07

标签: mysql

我需要知道sql查询以降序数据库表中的数据

3 个答案:

答案 0 :(得分:1)

你需要ORDER BY条款。 DESC用于降序,而ASC用于升序,可以省略它,因为默认情况下它按升序排序。

SELECT *
FROM tableName
ORDER BY columnName DESC

答案 1 :(得分:1)

select   * 
from     tablename 
order by colname desc;

答案 2 :(得分:0)

SELECT *
FROM tableName(adc table)
ORDER BY columnName(example name) DESC