我試着去得到一個表顯示多條記錄與MySQL和瓶
我的代碼看起來有些內容:
@app.route('/')
def home():
cursor = mysql.connect().cursor()
cursor.execute("SELECT titlle from cards ORDER BY id desc")
data = cursor.fetchone()
return data
,但它只能說明我一個,因爲好...我使用fetchone() 米,但當時我使用的使用fetchall()它說,有太多的記錄:/
我如何可以解決我的代碼實際上從表中顯示所有冠軍卡
謝謝:) :) –