Escape Keys using psycopg2
Found the information at https://www.psycopg.org/docs/usage.html#query-parameters.
Since % is used in both Python and in Postgres I need to use %% instead:
| |
or this:
| |
instead of this:
| |
Found the information at https://www.psycopg.org/docs/usage.html#query-parameters.
Since % is used in both Python and in Postgres I need to use %% instead:
| |
or this:
| |
instead of this:
| |