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
Labels:
SQL Server
0 komentar:
Posting Komentar