たとえば、以下のようなテーブルがある場合:-
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
助けてくれてありがとう!