Skip to content

Instantly share code, notes, and snippets.

@debbysa
Last active March 3, 2025 02:49
Show Gist options
  • Save debbysa/3fe708307caefc22132a08a841c14560 to your computer and use it in GitHub Desktop.
Save debbysa/3fe708307caefc22132a08a841c14560 to your computer and use it in GitHub Desktop.
query create table regions
CREATE TABLE regions (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
parent_id INT REFERENCES regions(id), -- NULL jika ini adalah Provinsi
population INT DEFAULT 0 -- Jumlah penduduk
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment