如何使用不同的数据多次执行相同的查询?

How to execute more than once the same query with different data?

我正在尝试执行相同的查询但使用不同的数据,但我总是在第一时间获得数据。其他时候,尽管数据库中有查询数据,mysql returns 空数据。

这是代码:

def get_team_colour_map(self, players, id_competition):
    tcm = FIBAColourMap()
    for p in players:
        args = [p["id"], id_competition]
        conn = pymysql.Connect(host = DDBB.DDBB_FIBA_HOST,
                                      user = DDBB.DDBB_FIBA_USER,
                                      password = DDBB.DDBB_FIBA_PSWD,
                                      db = DDBB.DDBB_FIBA_NAME,
                                      charset = DDBB.DDBB_FIBA_CHARSET,
                                      cursorclass=pymysql.cursors.DictCursor)
        with conn.cursor() as cursor:
            print("id player: {}".format(p["id"]))
            print("args: {}".format(args))
            cursor.execute("select sc.* from tbl030_shots_chart sc, tbl006_player_team pt, tbl007_game g, tbl004_jornada j, tbl012_competition c where pt.id = %s and pt.id_player_feb = sc.id_fiba and sc.id_game = g.id and g.id_jornada = j.id and j.id_competition = c.id and c.id = %s", args)
            data = cursor.fetchall()
            print("data: {}".format(data))
            print("Total rows: {}".format(cursor.rowcount))
            if cursor.rowcount > 0:
                for s in data:
                    x = float(FIBASCReport.adjust_x(s["x"]))
                    y = float(FIBASCReport.adjust_y(s["y"]))
                    color = tcm.image.getpixel((x,y))
                    color = ("#%02x%02x%02x" % color).upper()
                    if tcm.exists_color(color):
                        if int(s["m"]) == 0:
                            tcm.set_scored_shots(color, 1)
                        else:
                            tcm.set_failed_shots(color, 1)
                    else:
                        if int(s["m"]) == 0:
                            tcm.set_scored_shots("OTROS", 1)
                        else:
                            tcm.set_failed_shots("OTROS", 1)
            else:
                #tcm = None
                print("Jugadora con id: {} NO ha realizado ningún tiro en competición: {}".format(p["id"], id_competition))
    return tcm

在此代码中,cursor.fetchall() returns 数据第一个查询但下一个查询 returns 空结果。

我如何运行多个查询?我正在使用 mySQL 8.0 和 Python 3.6

这是因为您每次都使用相同的光标。每次循环执行查询时创建一个新的游标实例。在第一个查询 运行 之后,游标已经位于所有数据之后。因此在那之后没有返回任何行

你也可以试试这个:

查看 MySQLCursor.execute() 的文档。

它声称您可以传入一个多参数,允许您在一个字符串中 运行 多个查询。

如果 multi 设置为 True,execute() 可以执行操作字符串中指定的多个语句。

multi 是 execute() 调用的可选第二个参数:

operation = 'SELECT 1; INSERT INTO t1 VALUES (); SELECT 2'
for result in cursor.execute(operation, multi=True):