Skip to content

Instantly share code, notes, and snippets.

@nobishino
Created December 24, 2019 12:07
Show Gist options
  • Save nobishino/3d412443ea650ca8f88059a50fa62fb9 to your computer and use it in GitHub Desktop.
Save nobishino/3d412443ea650ca8f88059a50fa62fb9 to your computer and use it in GitHub Desktop.
with recursive fibb(x,y) as (
select 0,1
union
select y,x+y from fibb
limit 100
)
select x from fibb;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment