如何在“可读”中显示以下内容日期时间格式?
Database : SQLite
Column : SomeTable.Logged (DateTime)
我正在使用 System.Data.SQLite 组件。我在 Logged
列中将日期时间值保存为刻度。例如,使用 c#
DateTime.Now.Ticks;
保存在 SomeTable.Logged
中的示例值是:
634399267463299880
如何使用 sql,在“正常”日期中显示此值?例如'01-05-2011 13:45:22'
?
我知道页面 http://www.sqlite.org/lang_datefunc.html ,但我无法让事情按照我想要的方式进行。
Database : SQLite
Column : SomeTable.Logged (DateTime)
Im using the System.Data.SQLite
component. I save a datetime value in the Logged
column as ticks. e.g. using c#
DateTime.Now.Ticks;
An example value that is saved in SomeTable.Logged
is:
634399267463299880
How, using sql, would I display this in a 'normal' date? e.g. '01-05-2011 13:45:22'
?
I'm aware of the page http://www.sqlite.org/lang_datefunc.html , but I can't quite get things to work the way I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
哪里:
示例:
Try:
where:
example: