How would I escape the % in the following:
cursor.execute('''SELECT MIN(id) FROM title WHERE provider=%s
AND vendor_id LIKE "%s%"''', (provider, vendor_id_stem))
How would I escape the % in the following:
cursor.execute('''SELECT MIN(id) FROM title WHERE provider=%s
AND vendor_id LIKE "%s%"''', (provider, vendor_id_stem))