Mysql
 sql >> Database >  >> RDS >> Mysql

Python MySQLdb scorre la tabella

Una volta che hai i risultati nel cursore, puoi scorrere direttamente al suo interno.

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