本文共 352 字,大约阅读时间需要 1 分钟。
???????????tb_distree????????
create table tb_distree( id number, name varchar2(300), pid number);
???????????????
alter table tb_distree add ( constraint pk_id primary key(id), constraint fk_pid foreign key(pid) references tb_distree(id));
????????????
insert into tb_distree(id,name) values(1,'
转载地址:http://zopfk.baihongyu.com/