From 8198dd9a7c615033c81dac0b804a29f3b573ff8f Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 10 Mar 2017 15:11:24 -0600 Subject: [PATCH] Add a newline to better format the SQL --- postgres/prepare-execute-and-deallocate-statements.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postgres/prepare-execute-and-deallocate-statements.md b/postgres/prepare-execute-and-deallocate-statements.md index 457974a..62c2a4b 100644 --- a/postgres/prepare-execute-and-deallocate-statements.md +++ b/postgres/prepare-execute-and-deallocate-statements.md @@ -4,7 +4,8 @@ In PostgreSQL, you can prepare a named statement to be executed later using [`prepare`](https://www.postgresql.org/docs/current/static/sql-prepare.html). ```sql -> prepare column_names (text) as select column_name from information_schema.columns where table_name = $1; +> prepare column_names (text) as + select column_name from information_schema.columns where table_name = $1; PREPARE ```