在进行新纪元时间(1970-01-01 00:00:00)以来的秒到实际时间之间转换的时候 MySQL 根据参数 time_zone 的设置有两种选择:
time_zone 设置为 SYSTEM 的话:使用 sys_time_zone 获取的 OS 会话时区,同时使用 OS API 进行转换。对应转换函数 Time_zone_system::gmt_sec_to_TIME
time_zone 设置为实际的时区的话:比如 ‘+08:00’,那么使用使用 MySQL 自己的方法进行转换。对应转换函数 Time_zone_offset::gmt_sec_to_TIME
实际上 Time_zone_system 和 Time_zone_offset 均继承于 Time_zone 类,并且实现了 Time_zone 类的虚函数进行了重写,因此上层调用都是 Time_zone::gmt_sec_to_TIME。
Python 3.6.4 (v3.6.4:d48ecebad5, Dec 18 2017, 21:07:28)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> from datetime import datetime
>>> now = datetime.now()
>>> timestamp = int(time.mktime(now.timetuple()))
>>> timestamp
1520493295
>>> timestamp_microsecond = float('{}{:06}'.format(timestamp, now.microsecond)) / 1000000
>>> timestamp_microsecond
1520493295.337066
import time #秒级的时间戳 print time.time() #毫秒级的时间戳 print int(time.time() * 1000)
datetime对象自带timestamp()方法,返回自身的时间戳
timestamp是什么格式