We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d6a5e commit 8198dd9Copy full SHA for 8198dd9
postgres/prepare-execute-and-deallocate-statements.md
@@ -4,7 +4,8 @@ In PostgreSQL, you can prepare a named statement to be executed later using
4
[`prepare`](https://www.postgresql.org/docs/current/static/sql-prepare.html).
5
6
```sql
7
-> prepare column_names (text) as select column_name from information_schema.columns where table_name = $1;
+> prepare column_names (text) as
8
+ select column_name from information_schema.columns where table_name = $1;
9
PREPARE
10
```
11
0 commit comments