例如,如果我有如下表:-
create table Categories(CategoryId int primary key,
ParentCategoryId int foreign key references Categories(CategoryId))
例如,如果我的表中有以下数据:-
CategoryID ParentCategoryId
1 2
2 3
3 4
4 NULL
Result:
CategoryId ParentCategoryId
1 2
1 3
1 4
2 3
2 4
3 4
4 NULL
谢谢你的帮助!