python mysql insert current datetime

在 Python 中使用 MySQL 插入当前时间戳,可以使用 datetime 模块获取当前时间,然后将其插入到 MySQL 数据库中。

import datetime
import mysql.connector
# 连接数据库
cnx = mysql.connector.connect(user='username', password='password', host='hostname', database='dbname')
cursor = cnx.cursor()
# 获取当前时间
now = datetime.datetime.now()
# 插入数据
query = "INSERT INTO table (date_column) VALUES (%s)"
cursor.execute(query, (now,))
cnx.commit()
# 关闭连接
cursor.close()
cnx.close()

需要注意的是,上面的代码假设你已经有了一个名为 table 的表,该表有一个名为 date_column 的 DATETIME 列。

  •