2 lines
99 B
SQL
2 lines
99 B
SQL
create table child (id int key, pid int, constraint fk_1 foreign key (pid) references parent(id));
|
create table child (id int key, pid int, constraint fk_1 foreign key (pid) references parent(id));
|