查詢 資料SQL語法 command = "SELECT * FROM member" # 執行指令 cursor.execute(command) # 取得所有資料 result = cursor.fetchall() print(result)
確定! 回上一頁