From 0859f2addd151df5fe27d1eae136f2fc71e70f71 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 27 Jun 2015 18:29:34 -0500 Subject: [PATCH] Add a link to more info in the latest til. --- postgres/fizzbuzz-with-common-table-expressions.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/postgres/fizzbuzz-with-common-table-expressions.md b/postgres/fizzbuzz-with-common-table-expressions.md index a694cce..1d22ad5 100644 --- a/postgres/fizzbuzz-with-common-table-expressions.md +++ b/postgres/fizzbuzz-with-common-table-expressions.md @@ -21,3 +21,6 @@ with recursive fizzbuzz (num,val) as ( ) select val from fizzbuzz where num > 0; ``` + +Check out [With Queries (Common Table Expressions)](http://www.postgresql.org/docs/9.4/static/queries-with.html) +for more details on CTEs.