create table Shop(
ordId NUMBER(7) NOT NULL PRIMARY KEY);
create table Customer(
ordId NUMBER(7) NOT NULL,
FOREIGN KEY (ordId) REFERENCES Shop(ordId) on delete cascade);
so, when i delete a row in shop, the corresponding row in customer will be
deleted.
so, i have created a function in php to ex
hi, i have 2 tables in oracle
create table Shop(
ordId NUMBER(7) NOT NULL PRIMARY KEY);
create table Customer(
ordId NUMBER(7) NOT NULL,
FOREIGN KEY (ordId) REFERENCES Orders(ordId) on delete cascade);
so, when i delete a row in shop, the corresponding row in customer will be
deleted.
so, i hav
2 matches
Mail list logo