x = int(id_[0]) select_query = "SELECT * FROM files WHERE id = %s" cursor.execute(select_query,x) results = cursor.fetchone()
我在 python 中使用 mySQL
当我摆脱变量并添加一个像 1 这样的随机 id 时,它就起作用了。