I have written an sqlite3 query to execute the below,
cur.execute("select * from table where column like '%s'"% (variable1))
which gives the strings the completely match with the variable1. But I want an sqlite3 query that can show:
cur.execute("select * from table where column *contains* '%s'"% (variable1))
What query should I write find any string that contains 'variable1'.
Any help would be appreciable.