1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add a newline to better format the SQL

This commit is contained in:
jbranchaud
2017-03-10 15:11:24 -06:00
parent 57d6a5e7f6
commit 8198dd9a7c

View File

@@ -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). [`prepare`](https://www.postgresql.org/docs/current/static/sql-prepare.html).
```sql ```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 PREPARE
``` ```