SQL如何把多层数据绑定到下拉菜单?
所有的数据只在一张表格里(或者三张表格也可以), 现在想实现如下的显示方式,请问如何办到呢?
SELECT [ClassID],classname FROM [ProSortTable] b Where [SortGrade]=1
Select classID,ClassDegree2,classname from [ProSortTable] a where a.ClassDegree2 in
(SELECT [ClassID] FROM [ProSortTable] b Where [SortGrade]=1)
Select classID,ClassDegree2,ClassDegree3,classname from [ProSortTable] c where c.ClassDegree3 in
(
(Select classID from [ProSortTable] a where a.ClassDegree2 in
(Select [ClassID] FROM [db_lidecomcn].[dbo].[ProSortTable] b Where [SortGrade]=1)
)
) Order by c.ClassDegree3
回答:
自己解决了,原来多用一个 dataRelation就可以了,没想到这么简单。。。
ds.Relations.Add("ParentChild", ds.Tables["parentTable"].Columns["parentID"], ds.Tables["childTable"].Columns["parentID"],false);
ds.Relations.Add("childDetails",ds.Tables["childTable"].Columns["childID"],ds.Tables["detailsTable"].Columns["childID"],false);
以上是 SQL如何把多层数据绑定到下拉菜单? 的全部内容, 来源链接: utcz.com/p/189472.html