Python-元组超出范围

时间:2018-10-17 17:52:59

标签: python sql python-3.x tuples amazon-redshift

我正在尝试使用以下Python脚本从Redshift数据库中提取一些数据,但会引发错误

IndexError: tuple index out of range

下面是我正在使用的代码:

import pandas as pd
import psycopg2
from psycopg2 import sql

def func(name):
    db_details
    cursor = conn.cursor()
    cursor.execute(sql.SQL("""select id,name,shop 
    from sales where shop = {}""").format(sql.Literal(name)))

任何人都可以帮助我为什么出现此错误。

0 个答案:

没有答案