我需要知道sql查询以降序数据库表中的数据
答案 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