MySQL 中的datetime.datetime 物件:插入註意事項
使用MySQL 資料庫和Python 時,可能會遇到一種特定需求:插入一個datetime.datetime 物件放入日期列中。此查詢旨在解決潛在的挑戰並提供解決方案。
挑戰:
使用格式為「%s, " MySQL 由於在字串期間無法轉換物件而遇到錯誤
解決方案:
查詢應使用以下字串格式來插入日期或時間字段,而不是「 %s 」佔位符:
import time time.strftime('%Y-%m-%d %H:%M:%S')
此函數傳回字串中的當前日期或時間
範例:
import time now = datetime.datetime.now() cursor.execute("INSERT INTO table (name, id, datecolumn) VALUES (%s, %s , time.strftime('%Y-%m-%d %H:%M:%S'))", ("name", 4, now)) commit()
透過利用此方法,Python 可以有效地將datetime.datetime 物件插入MySQL表中的日期列中,從而確保相容性和資料準確代表。
以上是如何正確地將 Python `datetime.datetime` 物件插入 MySQL 日期列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!