码迷,mamicode.com
首页 > 数据库 > 详细

pymysql插入datetime类型

时间:2018-07-06 20:25:45      阅读:466      评论:0      收藏:0      [点我收藏+]

标签:pre   datetime   value   time   strftime   %s   user   mysq   class   

 

第一种

create_time=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")

第二种

 update_time=time.strftime(‘%Y-%m-%d %X‘,time.localtime(time.time()))



sql="insert into user(create_time,update_time) 
                      values(‘%d‘,‘%d‘)" 

data=(
create_time,update_time
)

cursor.excute(sql%data) conn.commit()
cursor.close()
conn.close()

 

pymysql插入datetime类型

标签:pre   datetime   value   time   strftime   %s   user   mysq   class   

原文地址:https://www.cnblogs.com/z-x-y/p/9275258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!