Jaka jest właściwa metoda, aby lista (countryList) była dostępna za pośrednictwem% sw instrukcji SQL?
# using psycopg2
countryList=['UK','France']
sql='SELECT * from countries WHERE country IN (%s)'
data=[countryList]
cur.execute(sql,data)
Jak to jest teraz, wyświetla błąd po próbie uruchomienia "WHERE country in (ARRAY [...])". Czy jest na to inny sposób niż manipulacja ciągiem?
Dzięki
Aby trochę wyjaśnić odpowiedź, zająć się nazwanymi parametrami i przekonwertować listy na krotki:
countryList = ['UK', 'France'] sql = 'SELECT * from countries WHERE country IN %(countryList)s' cur.execute(sql, { # You can pass a dict for named parameters rather than a tuple. Makes debugging hella easier. 'countryList': tuple(countryList), # Converts the list to a tuple. })
źródło
cur.execute("SELECT * FROM table WHERE col IN %(list1)s OR col IN %(list2)s", {'list1': tuple(1,2,3), 'list2' = tuple(4,5,6)})
Możesz użyć listy Pythona bezpośrednio, jak poniżej. Działa jak operator IN w SQL, a także obsługuje pustą listę bez zgłaszania żadnego błędu.
data=['UK','France'] sql='SELECT * from countries WHERE country = ANY (%s)' cur.execute(sql,(data,))
źródło: http://initd.org/psycopg/docs/usage.html#lists-adaptation
źródło
cur.execute(sql, (tuple(data),))