Passing table name as a parameter in psycopg2 Passing table name as a parameter in psycopg2 postgresql postgresql

Passing table name as a parameter in psycopg2


According to the official documentation:

If you need to generate dynamically an SQL query (for instance choosing dynamically a table name) you can use the facilities provided by the psycopg2.sql module.

The sql module is new in psycopg2 version 2.7. It has the following syntax:

from psycopg2 import sqlcur.execute(    sql.SQL("insert into {} values (%s, %s)")        .format(sql.Identifier('my_table')),    [10, 20])

More on: http://initd.org/psycopg/docs/sql.html#module-psycopg2.sql

[Update 2017-03-24: AsIs should NOT be used to represent table or fields names, the new sql module should be used instead: https://stackoverflow.com/a/42980069/5285608 ]

Also, according to psycopg2 documentation:

Warning: Never, never, NEVER use Python string concatenation (+) or string parameters interpolation (%) to pass variables to a SQL query string. Not even at gunpoint.


Per this answer you can do it as so:

import psycopg2from psycopg2.extensions import AsIs#Create your connection and cursor...cursor.execute("SELECT * FROM %(table)s", {"table": AsIs("my_awesome_table")})


The table name cannot be passed as a parameter, but everything else can. Thus, the table name should be hard coded in your app (Don't take inputs or use anything outside of the program as a name). The code you have should work for this.

On the slight chance that you have a legitimate reason to take an outside table name, make sure that you don't allow the user to directly input it. Perhaps an index could be passed to select a table, or the table name could be looked up in some other way. You are right to be wary of doing this, however. This works, because there are relatively few table names around. Find a way to validate the table name, and you should be fine.

It would be possible to do something like this, to see if the table name exists. This is a parameterised version. Just make sure that you do this and verify the output prior to running the SQL code. Part of the idea for this comes from this answer.

SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' and table_name=%s LIMIT 1