我有一张表,主要的自动提升ID和它的链接ID在同一个表中,没有一个用于链接的单独表格 如下所示
id linkid topics
1 0 algebra
2 0 maths
3 1 coordinates
4 1 xy coordinates
5 2 numerics
6 2 statistics
我将程序视为
select topics,
(select TopicName_en +'~' as [text()] from Topics t2 where t1.id=t2.linkid for xml path('')) as subtopics
from Topics t1
我的结果为
topics subtopics
-------------------------------------------------
algebra coordinates~xy coordinates
maths numerics~statistics
coordinates null
xy coordinates null
numerics null
statistics null
我的问题是如何根据动态结果im
来绑定acordian面板