当前位置:  开发笔记 > 编程语言 > 正文

将mysql时间戳转换为python中的纪元时间

如何解决《将mysql时间戳转换为python中的纪元时间》经验,为你挑选了2个好方法。

将mysql时间戳转换为python中的纪元时间 - 是否有一种简单的方法可以做到这一点?



1> 小智..:

为什么不让MySQL做出艰苦的努力呢?

select unix_timestamp(fieldname) from tablename;



2> bigredbob..:

将mysql时间转换为epoch:

>>> import time
>>> import calendar
>>> mysql_time = "2010-01-02 03:04:05"
>>> mysql_time_struct = time.strptime(mysql_time, '%Y-%m-%d %H:%M:%S')
>>> print mysql_time_struct
(2010, 1, 2, 3, 4, 5, 5, 2, -1)
>>> mysql_time_epoch = calendar.timegm(mysql_time_struct)
>>> print mysql_time_epoch
1262401445

将epoch转换为MySQL可以使用的东西:

>>> import time
>>> time_epoch = time.time()
>>> print time_epoch
1268121070.7
>>> time_struct = time.gmtime(time_epoch)
>>> print time_struct
(2010, 3, 9, 7, 51, 10, 1, 68, 0)
>>> time_formatted = time.strftime('%Y-%m-%d %H:%M:%S', time_struct)
>>> print time_formatted
2010-03-09 07:51:10

推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有