Created
July 13, 2012 04:05
-
-
Save youz/3102660 to your computer and use it in GitHub Desktop.
再帰CTEでフィボナッチ数列
This file contains hidden or 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 fibs (fib, pre) AS ( | |
SELECT 1, 0 | |
UNION ALL | |
SELECT fib+pre, fib from fibs | |
) | |
SELECT TOP 40 fib FROM fibs; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment