“需要显示所有链接到父类别的项目 id=1 根据表格,它应该获取:大机器、计算机、CPU 机柜、硬盘和磁盘。但是按照编写的逻辑,它并没有获取所有记录。请帮助..“
create table ItemSpares
(
ItemName varchar(20),
ItemID int,
ParentCategoryID int
)
insert into ItemSpares (ItemName,ItemID,ParentCategoryID)
select 'Big Machine', 1 , NULL UNION ALL
select 'Computer', 2, 1 UNION ALL
select 'CPU Cabinet', 3, 2 UNION ALL
select 'Hard Disk', 4, 3 UNION ALL
select 'Magnetic Disk',5,4 UNION ALL
select 'Another Big Machine',6, NULL