Last active
March 3, 2025 02:49
-
-
Save debbysa/3fe708307caefc22132a08a841c14560 to your computer and use it in GitHub Desktop.
query create table regions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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