如何将 SQL Server SMALLDATETIME 转换为 Unix 时间戳?
如何将 SQL Server SMALLDATETIME 转换为 Unix 时间戳?
日期在 MS Access DB 中存储为 CAST(0x96040474 AS SmallDateTime)。 数据被转储到 SQL,我希望将这些时间转换为 MySQL 的 Unix 时间戳。
谢谢 AO
How do I convert an SQL Server SMALLDATETIME to Unix Timestamp?
date was stored as CAST(0x96040474 AS SmallDateTime) in MS Access DB. Data was dumped to SQL and I'm looking to convert those times to Unix Timestamps for MySQL.
Thanks
AO
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
select datediff(ss, '1/1/1970', your_date_here)
例如
select datediff(ss, '1/1/1970',cast('1/1/1989' assmalldatetime))
select datediff(ss, '1/1/1970', your_date_here)
e.g.
select datediff(ss, '1/1/1970', cast('1/1/1989' as smalldatetime))
来自SQL Server 2005 联机丛书,“Transact SQL 参考”
因此,您似乎需要将十六进制值拆分为两个整数,并将 1900/01/01 基准日期转换为 1970/01/01 基准日期,然后将另一个整数作为午夜过后的整数分钟。
From SQL Server 2005 Books Online, "Transact SQL Reference"
So it looks like you need to do some splitting of the hex values into two integers and convert from a 1900/01/01 base date to a 1970/01/01 base date, then take the other integer as integral minutes past midnight.
PHP 的 strtotime() 函数将采用小日期时间作为参数。
PHP's strtotime() function will take a smalldatetime as an argument.