You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
createtableHazelTree ( /* Note we need length 140 name for the worst case number 2^27 */ name nvarchar(150) primary key,-- name containing the path parent nvarchar(150), -- for traditional recursive search comparison number int not null, -- node element /* matrix tree encoding */ e11 bigint not null, e21 bigint not null, e12 bigint not null, e22 bigint not null, );