Closed a-szulc closed 2 months ago
Instead of something like cur.execute("select %s from %s", (column, table)), etc. Use patterns from the docs, mainly sql.identifier for table and column names. Values can be left as is.
cur.execute("select %s from %s", (column, table))
Instead of something like
cur.execute("select %s from %s", (column, table))
, etc. Use patterns from the docs, mainly sql.identifier for table and column names. Values can be left as is.