需要按降序显示 SQLite 查询

发布于 2024-11-05 00:23:34 字数 317 浏览 0 评论 0原文

我想进行一个查询,以便结果将以 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

白色秋天 2024-11-12 00:23:34

您需要将 ORDER BY ID DESC 添加到您的 select 语句中。

排序依据

You need to add an ORDER BY ID DESC to your select statement.

ORDER BY

隔纱相望 2024-11-12 00:23:34

使用以下语句....

select * from YOUR_TABLE_NAME ORDER BY ID  DESC;

Use following statement....

select * from YOUR_TABLE_NAME ORDER BY ID  DESC;
白日梦 2024-11-12 00:23:34

你可以这样写:

Cursor cursor = db.rawQuery("SELECT * FROM " + TABLE_NAME+" 
                WHERE "+STATUS+" = "+"'0'" + " ORDER BY id DESC LIMIT 10", null);
return cursor ;

You can write like this:

Cursor cursor = db.rawQuery("SELECT * FROM " + TABLE_NAME+" 
                WHERE "+STATUS+" = "+"'0'" + " ORDER BY id DESC LIMIT 10", null);
return cursor ;
牛↙奶布丁 2024-11-12 00:23:34

/* 最简单最基本的方式,可以写成 */

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 */

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文