Skip to content
Advertisement

I am trying to make a SQL query of Update in python but it is giving error

JavaScript

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 ‘:00 WHERE Contact_no = 9827355876’ at line 1

How can I do this to make a single query of SQL ?

Advertisement

Answer

You should be using a prepared statement here, e.g.

JavaScript
Advertisement