CREATE TABLE pasok (
kode_pasok char(10),
kode_barang char(6),
kode_suplier char(10),
tanggal_pasok date,
jumlah_pasok numeric,
constraint
pk_pasok primary key (kode_pasok),
constraint
fk_pasok_barang foreign
key (kode_barang) references barang (kode_barang),
constraint
fk_pasok_suplier foreign key (kode_suplier) references suplier (kode_suplier)
);