SQLite:获取日期
如何在 SQLite 中返回 DateTime 的日期?
我将字段日期存储为日期时间。 现在我想从每一行获取日期(只是日期,而不是完整日期)。
我尝试使用以下内容,但它不起作用。 它不会给出错误,但它什么也不返回
SELECT strftime('%d', Date) FROM sessiondate
How can I return the day of a DateTime in SQLite?
I have my field Date stored as a DateTime.
Now I would like get the day from each row (just the day, not the full date).
I tried using the following, but it doesn't work.
It doesn't give an error, but it just returns nothing
SELECT strftime('%d', Date) FROM sessiondate
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能有用
might work
这将获取数据库中的每一天,您可以通过添加 Select、Where 条件或 ORDER BY 子句来构建它。
This will get each Day in your db, you can build on it by adding to Select, Where conditions or ORDER BY clause.