gpt4 book ai didi

带有日期时间计算字符串的 Python SQLITE3 SELECT 查询不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 12:08:47 25 4
gpt4 key购买 nike

我有一个 SQLite3 数据库,其中有一个名为 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 数据库:

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',)]

那么,当我通过日期时间创建字符串时,为什么查询不能正常工作?一个字符串就是一个字符串,对吧?那么我在这里缺少什么?

最佳答案

不是将 this_year 转换成字符串,而是将其保留为 datetime.date 对象:

this_year = DT.date(DT.date.today().year,1,1)

import sqlite3
import datetime as DT

this_year = (DT.date(DT.date.today().isocalendar()[0], 1, 1))
# this_year = ("'"+str(this_year)+"'")
# this_year = DT.date(DT.date.today().year,1,1)
with sqlite3.connect(':memory:') as conn:
cursor = conn.cursor()
sql = '''CREATE TABLE TEST_TABLE
("ID" TEXT,
"DATE_IN" DATE,
"WEEK_IN" number)
'''
cursor.execute(sql)
sql = 'INSERT INTO TEST_TABLE(ID, DATE_IN, WEEK_IN) VALUES (?,?,?)'
cursor.executemany(sql, [[1,'2012-03-25',13],[2,'2013-03-25',13],])
sql = 'SELECT ID FROM TEST_TABLE where WEEK_IN = 13 and DATE_IN > ?'
cursor.execute(sql, [this_year])
for row in cursor:
print(row)

产量

(u'2',)

当您编写参数化 SQL 并使用 cursor.execute 的 2 参数形式时,sqlite3 数据库适配器将为您引用参数。所以你不需要(或不想)自己手动引用参数。

所以

this_year = str(this_year)

代替

this_year = ("'"+str(this_year)+"'")

也可以,但如上所示,这两行都是不必要的,因为 sqlite3 也将接受 datetime 对象作为参数。

也有效。

由于 sqlite3 自动引用参数,当您手动添加引号时,最后一个参数会得到两组引号。 SQL结束比较

In [59]: '2012-03-25' > "'2013-01-01'"
Out[59]: True

这就是(错误地)返回两行的原因。

关于带有日期时间计算字符串的 Python SQLITE3 SELECT 查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15732120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com