MS Access SQL On Update/On Delete

667 Views Asked by At

I am practicing SQL in MS Access for my test. Currently trying to create constraints on a table.

CREATE TABLE Container (
Nr int NOT NULL,
Soort varchar(255),
Aanschaf double NOT NULL,
Huurprijs double NOT NULL,
Verhuurder varchar(255) NOT NULL,
PRIMARY KEY (Nr),
CONSTRAINT fk_verh FOREIGN KEY (Verhuurder)
REFERENCES Verhuurbedrijf
ON UPDATE cascade
ON DELETE cascade
);

I get a syntax error on the ON UPDATE cascade. UPDATE turns black. Not sure what is wrong here?

I used this documentation as well: https://msdn.microsoft.com/en-us/library/bb177889(v=office.12).aspx

Keep in mind I have to learn how to do it programmatically through SQL.

0

There are 0 best solutions below