ник: час
Даааааа Виноградов С.А.
я пока - притормаживаю, а не рекурсия...
create table Departments
(
Id int not null identity primary key,
Parent int not null references Departments(Id),
Name varchar(32) not null,
Left int not null,
Right int not null
)
Departments