我在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)替换变量的值。 怎么了?
答案 0 :(得分:0)
query="select DT_ORA_INSERIMENTO from richieste where DT_ORA_INSERIMENTO=%s"%datestart