Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Python MySQLdb iteriert durch die Tabelle

Sobald Sie Ergebnisse im Cursor haben, können Sie direkt darin iterieren.

cursor = database.cursor()    
cursor.execute("SELECT user_id FROM round WHERE state == -1 AND state = 2")  
for round in cursor:
  if round[0] != 5
    ...do stuff