Created
December 28, 2021 13:01
-
-
Save Eunoia1729/cd1042e3ac19d3a4d80dc2daeb59751c to your computer and use it in GitHub Desktop.
Generating fibonacci sequence in MySQL
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(n, a, b) AS | |
( | |
SELECT 1, 1, 0 | |
UNION ALL | |
SELECT n + 1, a + b, a | |
FROM fib | |
WHERE n < 10 | |
) | |
SELECT a | |
FROM fib; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment