I want to run the following code, but Python gives me an error code :
select = input("ENTER USER FOR PASS RECOVERY : ")
cursor.execute("SELECT COUNT(*) FROM user_stat WHERE usr=(%s)",(select))
python code error :
mysql.connector.errors.ProgrammingError: 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%s)' at line 1
error picture In which part of the code is the problem and what should I do?