Mysql conenctor, why my insert query doesn't work, but the commented one does?
that's it.Im using mysql-connector-python. I can run the commented part successfuly. But the actual part doesn't work querry = "INSERT INTO selectdif (name, score) VALUES (%s, %s)" value = ("Sssss", 10) cursor.execute(querry) """sql = "INSERT INTO selectdif (name, score) VALUES…