我正在查询 SQL 服务器以获取 DATETIME 值。现在我想将此值插入到另一个表中。这是我的脚本:
cursor2.execute(query1)
items = cursor2.fetchall()
for item in items:
cursor1.execute(query2, [item[0]])
c_date = cursor1.fetchone()
print(type(c_date)) #here type is <class 'pypyodbc.TupleRow.<locals>.Row'>
if c_date is not None:
cursor2.execute(query3, [c_date, item[0]])
如何将此 TupleRow 转换为 DATETIME SQL 值?由于类型不兼容,目前我收到此错误:
TypeError:“类型”对象不可下标