Po uzyskaniu wyników w kursorze możesz bezpośrednio w nim iterować.
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
Po uzyskaniu wyników w kursorze możesz bezpośrednio w nim iterować.
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