Skip to content
Advertisement

Execute a query for multiple sets of parameters with psycopg2

I have a table that I want to query, but I want to make many specific queries and return a table of any results that have met their condition, and ignore queries that do not exist.

Hopefully this illustrates what I’m trying to achieve here…

I want to perform a series of select statements which each have a pair of parameters. If that pair of parameters is in the database, then append it to the results table.

Is the only way to do this, manually in a for-loop?

Advertisement

Answer

Executing many queries in a loop is not a good idea. Use a common table expression to deliver many pairs of parameters to a single query and get results for all of them, like in this Postgres example.

Python code:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement