Created
June 18, 2014 10:29
-
-
Save zaltoprofen/5bc3443383ea31c33b5d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH RECURSIVE _fib(a, b) AS ( | |
SELECT 1,0 | |
UNION ALL | |
SELECT b, a+b FROM _fib | |
), fib AS ( | |
SELECT b FROM _fib | |
) | |
SELECT * FROM fib LIMIT 100; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment