Skip to content

Instantly share code, notes, and snippets.

@felixyz
felixyz / Intro to Common Table Expressions.md
Last active February 5, 2025 15:29
Introduction to transitive closure / Common Table Expressions / iterative queries in SQL

Teh Social Netswork!

CREATE TABLE users (
 id SERIAL PRIMARY KEY,
 name VARCHAR(10) NOT NULL
);

INSERT into users VALUES