pythonで日時をSQLのINSERT文に入れたいです。
下記構文で取得した日時をSQLのinsert文で使用しようと試み、2つSQL文を考えてみましたが、無理でした。
どうすれば良いでしょうか?ご教示よろしくお願いいたします。
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S") cursor.execute("insert into td_vortex_test (a) values(%s)" % (now)) …案1 cursor.execute("insert into td_vortex_test (a) values(?)" ,(now)) …案2
回答1件
あなたの回答
tips
プレビュー