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

Add a link to more info in the latest til.

This commit is contained in:
jbranchaud
2015-06-27 18:29:34 -05:00
parent eb48b35597
commit 0859f2addd

View File

@@ -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.