Python MySQL参数化查询与日期

时间:2017-09-14 15:42:11

标签: python mysql sql django

我在django中使用了一个sql查询,其中参数是一个日期:

query="select DT_ORA_INSERIMENTO from richieste where DT_ORA_INSERIMENTO=%s", datestart

但是以这种方式我收到错误:

not enough arguments for format string

似乎django没有用他的值(2017-09-02 00:00:00)替换变量的值。 怎么了?

1 个答案:

答案 0 :(得分:0)

query="select DT_ORA_INSERIMENTO from richieste where DT_ORA_INSERIMENTO=%s"%datestart