python数据库插入时间
时间: 2023-11-02 16:53:41 浏览: 43
向数据库插入datetime类型的数据
4星 · 用户满意度95%
可以使用datetime模块获取当前时间,再将时间插入到数据库中。以下是一个示例代码:
import datetime
import pymysql
# 连接数据库
conn = pymysql.Connect(host='localhost', user='root', password='password', database='test', charset='utf8')
# 创建游标对象
cursor = conn.cursor()
# 获取当前时间
now_time = datetime.datetime.now()
# 时间格式化
time_str = now_time.strftime('%Y-%m-%d %H:%M:%S')
# SQL插入语句
sql = "INSERT INTO table_name(time) VALUES('%s')"
# 执行SQL语句
cursor.execute(sql % time_str)
# 提交事务
conn.commit()
# 关闭连接
cursor.close()
conn.close()
希望能对你有所帮助。
阅读全文