SQL datetimeデータ型を1行に挿入する構文は何ですか? 次のPythonでは、timestamp変数にのみNULL値が与えられます。INSERT datetime変数の構文INTO VALUE
timestamp = datetime.datetime.today()
print timestamp
query = "INSERT INTO table1 (name, class, time_update) VALUES('ONE','TWO',@timestamp)"
cursor.execute(query)
この質問を参照してください:http://stackoverflow.com/questions/1947750/does-python-support-mysql-prepared-statements – ean5533
'timestamp'変数に正しく渡していますか? http://stackoverflow.com/questions/902408/how-to-use-variables-in-sql-statement-in-python – JSuar