where-in

Python/psycopg2 WHERE IN statement

Python/psycopg2 WHERE IN statement Question: What is the correct method to have the list (countryList) be available via %s in the SQL statement? # using psycopg2 countryList=[‘UK’,’France’] sql=’SELECT * from countries WHERE country IN (%s)’ data=[countryList] cur.execute(sql,data) As it is now, it errors out after trying to run “WHERE country in (ARRAY[…])”. Is there a …

Total answers: 4