Skip to content

Instantly share code, notes, and snippets.

@Eunoia1729
Created December 28, 2021 13:01
Show Gist options
  • Save Eunoia1729/cd1042e3ac19d3a4d80dc2daeb59751c to your computer and use it in GitHub Desktop.
Save Eunoia1729/cd1042e3ac19d3a4d80dc2daeb59751c to your computer and use it in GitHub Desktop.
Generating fibonacci sequence in MySQL
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