Vol. I · A Postgres HandbookTwelve chapters · · 756 queries

The Query & the Schema

A reading-room reference for writing PostgreSQL by hand — selects to window functions, with the schema in plain view.

FrontChaptersSchemaColophon
Chapters · Advanced PostgreSQL · Query 021 / 350
AdvancedAdvanced PostgreSQL

Recursive fibonacci using CTE

The query

SQL
WITH RECURSIVE fib AS (
  SELECT 0 AS a, 1 AS b
  UNION ALL
  SELECT b, a + b FROM fib WHERE b < 1000
)
SELECT a AS fibonacci_number FROM fib
ORDER BY a;
Tested against PostgreSQL 16

Note

“Recursive CTE for mathematical sequences. Demonstrates that SQL is Turing-complete.

← Previous

GENERATE_SERIES: number generator utility

Next →

Dynamic SQL with EXECUTE

The Query & the Schema

Set in Fraunces and Inter Tight. Printed on parchment, in oxblood and ink. No tracking, no accounts, no JavaScript on the answer pages beyond what your browser needs to copy a query.

Compiled for Postgres 16 · MMXXVI