0% found this document useful (0 votes)
61 views4 pages

BDL - Final Project - 2

The document contains SQL commands to create four database tables: M_didik, M_kota, M_negara, and M_provinsi. Each table defines primary keys and includes fields for short descriptions and additional content. The tables will be used to store education, city, country, and province data with corresponding codes and descriptions.

Uploaded by

dweet33k4
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views4 pages

BDL - Final Project - 2

The document contains SQL commands to create four database tables: M_didik, M_kota, M_negara, and M_provinsi. Each table defines primary keys and includes fields for short descriptions and additional content. The tables will be used to store education, city, country, and province data with corresponding codes and descriptions.

Uploaded by

dweet33k4
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Basis Data Lanjut

Final Project 2 Kartika Dwi Hapsari CREATE TABLE M_didik ( K_didik VARCHAR(3) NOT NULL AUTO_INCREMENT, singkat VARCHAR(20) NULL, content VARCHAR(45) NULL, PRIMARY KEY(K_didik) );

CREATE TABLE M_kota (

Kartika Dwi Hapsari | 105060809111003

Basis Data Lanjut


Final Project 2 Kartika Dwi Hapsari K_kota VARCHAR(3) NOT NULL AUTO_INCREMENT, K_propinsi VARCHAR(3) NULL, K_negara VARCHAR(3) NULL, singkat VARCHAR(10) NULL, content VARCHAR(60) NULL, PRIMARY KEY(K_kota) );

CREATE TABLE M_negara (

Kartika Dwi Hapsari | 105060809111003

Basis Data Lanjut


Final Project 2 Kartika Dwi Hapsari K_negara VARCHAR(3) NOT NULL AUTO_INCREMENT, singkat VARCHAR(10) NULL, content VARCHAR(45) NULL, PRIMARY KEY(K_negara) );

CREATE TABLE M_provinsi ( K_propinsi VARCHAR(3) NOT NULL AUTO_INCREMENT, K_negara VARCHAR(3) NULL, Kartika Dwi Hapsari | 105060809111003

Basis Data Lanjut


Final Project 2 Kartika Dwi Hapsari singkat VARCHAR(45) NULL, PRIMARY KEY(K_propinsi) );

Kartika Dwi Hapsari | 105060809111003

You might also like