Skip to content

Instantly share code, notes, and snippets.

@rivalitaet
Last active April 28, 2016 11:11
Show Gist options
  • Save rivalitaet/4174bd286b45b51ec564d1a6cf5c759b to your computer and use it in GitHub Desktop.
Save rivalitaet/4174bd286b45b51ec564d1a6cf5c759b to your computer and use it in GitHub Desktop.
Creates fibonacci numbers directly in postgreSQL
WITH RECURSIVE fibs(val, tmp) as (
SELECT 1::NUMERIC, 1::NUMERIC UNION ALL
SELECT tmp, val + tmp FROM fibs
)
SELECT val FROM fibs limit 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment