Can anybody explains me why following sql statements do not work with mssql?
create table place (id int primary key, name varchar(64), parent_id int
references place (id) on delete cascade);
create table transport (id int primary key, name varchar(64));
create table trip (id int primary key, from_id int references transport
(id) on delete cascade, to_id int references transport(id) on delete
cascade);
Is there any work around?
Wiesiek