Skip to content

Instantly share code, notes, and snippets.

View jerrygrandyjorell-tech's full-sized avatar

jerrygrandyjorell-tech

View GitHub Profile
------------------------------------------------------------
-- NOMOR 1 — DDL: CREATE TABLES (POSTGRESQL VERSION)
------------------------------------------------------------
-- 1. Maskapai
CREATE TABLE IF NOT EXISTS Maskapai (
ID CHAR(6) PRIMARY KEY,
Nama VARCHAR(255),
Negara_Asal VARCHAR(255)
);