我有一个带有名为 的表的 SQLite3 DB,TEST_TABLE
如下所示:
("ID" TEXT,"DATE_IN" DATE,"WEEK_IN" number);
表中有 2 个条目:
1|2012-03-25|13
2|2013-03-25|13
我正在尝试编写一个返回今年第 13 周的 ID 的查询。我想明年再次使用该程序,所以我不能将“2013”硬编码为年份。
我使用 datetime 计算了今年的值,创建了一个datetime.date
内容如下的对象:“2013-01-01”。然后我将其转换为字符串:
this_year = (datetime.date(datetime.date.today().isocalendar()[0], 1, 1))
test2 = ("'"+str(this_year)+"'")
然后我查询了 SQLite DB:
cursr = con.cursor()
con.text_factory = str
cursr.execute("""select ID from TEST_TABLE where WEEK_IN = 13 and DATE_IN > ? """,[test2])
result = cursr.fetchall()
print result
[('1',), ('2',)]
这将返回 ID 1 和 2,但这并不好,因为 ID 1 的年份为“2012”。
奇怪的是,如果我不使用 datetime 作为字符串,而是手动创建 var,它可以正常工作。
test2 = ('2013-01-01')
cursr.execute("""select ID from TEST_TABLE where WEEK_IN = 13 and DATE_IN > ? """,[test2])
result = cursr.fetchall()
print result
[('2',)]
那么,当我通过 datetime 创建字符串时,为什么查询不能正常工作呢?字符串就是字符串,对吧?那么我在这里错过了什么?