标签:mysql datetime python datetime
最近有个python项目需要更新mysql时间,类型是datetime,参考了网上的建议,将时间转为字符串再写入数据库。
def toMysqlDateTime():
dt=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
return dt
本文出自 “hehe” 博客,请务必保留此出处http://476946.blog.51cto.com/466946/1945225
python datetime 写入mysql datetime类型
标签:mysql datetime python datetime
原文地址:http://476946.blog.51cto.com/466946/1945225