Python MySQLdb WHERE SQL LIKE
问题 I have recently started to learn Python and MySQL for web purposes and I have run into a following problem : I want to pull out from a mysql database one record that contains any text that I enter in param section, howerver I am running into following problem when making a query: traceback (most recent call last): File "/Users/Strielok/Desktop/test.py", line 13, in <module> c.execute("SELECT * FROM data WHERE params LIKE ('%s%') LIMIT 1" % (param)) TypeError: not enough arguments for format