需要按降序显示 SQLite 查询
我想进行一个查询,以便结果将以 indistinct 降序显示。
例如,假设列 ID 有六行。我需要一个查询来显示 ID 列表 indistinct 从 6 降序到 1。
编辑: 根据第一篇文章的文本,问题是如何在中显示查询结果降序排列。例如,给定 ID
ID
--
1
2
3
4
5
6
所需的结果:
ID
--
6
5
4
3
2
1
I want to make a query such that the result will be shown in indistinct descending order.
For example, assume column ID has six rows. I need an query that shows me the list of IDs indistinct descending from 6 to 1.
EDIT: Based on the first post's text, the question is how do display query results in descending order. For instance, given the IDs
ID
--
1
2
3
4
5
6
Desired results:
ID
--
6
5
4
3
2
1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要将
ORDER BY ID DESC
添加到您的 select 语句中。排序依据
You need to add an
ORDER BY ID DESC
to your select statement.ORDER BY
使用以下语句....
Use following statement....
你可以这样写:
You can write like this:
/* 最简单最基本的方式,可以写成 */
SELECT ID
来自你的表名
按 ID 描述订购;
/* 这应该可以很好地解决您的问题,并且应该为您提供所需的输出 */
/* In the most simple and basic way, you can write it as */
SELECT ID
FROM your_table_name
ORDER BY ID DESC;
/* This should work fine with your problem and should give you your desired output */