我在python環境中工作。我有一個像這樣的日期字串 - 26 Apr 2022 17:23:17 GMT
我想將此日期插入到 mysql 中,其中日期列資料類型是時間戳記。我怎樣才能實現這個目標?
My variables are like this (id=1, name="Jack", date="26 Apr 2022 17:23:17 GMT") mycurser = mydb.cursor() sql = "INSERT INTO sample_table (id,name,date) VALUES (%s, %s, %s)" val = (id, name, date) mycurser.execute(sql,val)
這裡日期是字串,mysql資料型別是時間戳記。
您可以使用
STR_TO_DATE
:使用 Python 腳本: