Skip to content

Commit 8198dd9

Browse files
committed
Add a newline to better format the SQL
1 parent 57d6a5e commit 8198dd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

postgres/prepare-execute-and-deallocate-statements.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ In PostgreSQL, you can prepare a named statement to be executed later using
44
[`prepare`](https://www.postgresql.org/docs/current/static/sql-prepare.html).
55

66
```sql
7-
> prepare column_names (text) as select column_name from information_schema.columns where table_name = $1;
7+
> prepare column_names (text) as
8+
select column_name from information_schema.columns where table_name = $1;
89
PREPARE
910
```
1011

0 commit comments

Comments
 (0)