Python和MySQL时间处理

Python和MySQL时间处理

# Python
import time
time.strftime( " %Y-%m-%d %H:%M:%S ",time.localtime(1450842012))


# MySQL
SELECT UNIX_TIMESTAMP(NOW()) as `timestamp`,NOW() as `now`;

你可能感兴趣的:(Python和MySQL时间处理)