如何将该值转换为有效日期?
我从表(来自 IBSng 数据库)中捕获了 Firstlogin 字段的值。我知道它是一个 Date
但我不知道如何将其转换为有效日期。
该字段的值为:1304077351
如何将其转换为有效的日期格式?
I catch the value of Firstlogin
field from a table (from IBSng Database). i know that it is a Date
but i don't know how can i convert it into a valid date .
The value of the field is : 1304077351
how to convert it to a valid date format ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 2011 年 4 月 29 日星期五 11:42:31 GMT 的 unix 时间戳。
编辑
根据IBS,它使用postgresql作为其后端数据库。您应该能够使用 to_timestamp 对其进行转换。
That is the unix timestamp for Fri, 29 Apr 2011 11:42:31 GMT.
Edit
According to IBS, it uses postgresql as its backend database. You should be able to convert it using to_timestamp.
我找到了!谢谢安德斯
I found it ! Thank you Anders