Membuat Constraint Pada SQLServer 2005

Posted On // Leave a Comment
Kita asumsikan telah terdapat 2 buah tabel yaitu optKuitansi dan optKuitansiDetail, maka berikut adalah Query untuk menambahkan constraint pada optKuitansiDetail




ALTER TABLE optKuitansiDetail
ADD CONSTRAINT
fk_optKuitansiDetail_optKuitansi 
FOREIGN KEY (
CabangID
,VoucherFixed
,VoucherCountTahun
,VoucherCountNomor)
REFERENCES optKuitansi(
CabangID
,VoucherFixed
,VoucherCountTahun
,VoucherCountNomor)
ON UPDATE CASCADE
ON DELETE NO ACTION

0 komentar: