将 Python datetime.datetime 对象插入 MySQL
问:如何将 datetime.datetime 对象插入 MySQL 日期列?
A:要将 datetime.datetime 对象插入 MySQL 日期列,需要使用适当的格式MySQL 可以识别的。以下步骤概述了该过程:
import time formatted_datetime = time.strftime('%Y-%m-%d %H:%M:%S')
cursor.execute("INSERT INTO table (name, id, datecolumn) VALUES (%s, %s, %s)", ("name", 4, formatted_datetime))
请注意,您应该将 formatted_datetime 用单引号引起来,因为您要将字符串插入数据库。
此方法将成功插入日期时间。 datetime 对象插入 MySQL 日期列。
以上是如何将 Python 的 datetime.datetime 对象插入 MySQL DATE 列?的详细内容。更多信息请关注PHP中文网其他相关文章!