SQL Order By DESC 和 ASC 给出相同的顺序

发布于 2025-01-11 12:51:14 字数 316 浏览 0 评论 0原文

我正在尝试按 SQLite 中的最新日期时间对结果进行排序。 经过一番尝试后,我得到了

SELECT *
FROM Orders
ORDER BY strftime(Date, '%Y'), strftime(Date, '%m'), strftime(Date, '%d') DESC

This 给了我从最旧到最新排序的订单,所以当然将 DESC 更改为 ASC 应该给我我想要的,但它给了我完全相同的顺序...

这里发生了什么?

解决方案(@forpas): 将格式更改为 YYYY-MM-dd hh:mm 非常感谢大家!

I'm trying to sort the results by most recent datetime in SQLite.
After a bit of trying i got

SELECT *
FROM Orders
ORDER BY strftime(Date, '%Y'), strftime(Date, '%m'), strftime(Date, '%d') DESC

This gives me the Orders sorted from oldest to newest, so of course changing the DESC to ASC should give me what I want, but it gives me the exact same order...

What is going on here?

Solution (@forpas):
Change format to YYYY-MM-dd hh:mm
Thanks alot everyone!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眼藏柔 2025-01-18 12:51:14

为什么不直接SORT BY Date DESC ???
我知道 SQlite 中没有 DATE 类型,但如果您以提供的 3 种方式中的任何一种存储日期,它应该无需转换即可工作。

SQLite 没有为存储日期预留的存储类
和/或时间。相反,SQLite 的内置日期和时间函数
能够将日期和时间存储为文本、实数或整数
值:

TEXT 作为 ISO8601 字符串(“YYYY-MM-DD HH:MM:SS.SSS”)。
REAL 作为儒略日数字,根据公历,自公元前 4714 年 11 月 24 日格林威治中午以来的天数。
INTEGER 作为 Unix 时间,自 1970-01-01 00:00:00 UTC 以来的秒数。
应用程序可以选择将日期和时间存储在其中任何一个中
格式并使用内置日期和格式在格式之间自由转换
时间函数。

Why don't you just SORT BY Date DESC ???
I understand there is not DATE type in SQlite, but if your stored you dates in any of the 3 provided ways, it should work without transformation.

SQLite does not have a storage class set aside for storing dates
and/or times. Instead, the built-in Date And Time Functions of SQLite
are capable of storing dates and times as TEXT, REAL, or INTEGER
values:

TEXT as ISO8601 strings ("YYYY-MM-DD HH:MM:SS.SSS").
REAL as Julian day numbers, the number of days since noon in Greenwich on November 24, 4714 B.C. according to the proleptic Gregorian calendar.
INTEGER as Unix Time, the number of seconds since 1970-01-01 00:00:00 UTC.
Applications can choose to store dates and times in any of these
formats and freely convert between formats using the built-in date and
time functions.

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