带有Category和SubCategory的嵌套类别表

时间:2012-05-07 12:33:41

标签: c# .net sql gridview nested-datalist

我们,
我有一个Category表,其中包含CategoryID(主键),ParentID(int not null)和Category(nvarchar not null)。
我试图在此表中插入和检索具有ID CategoryID的类别和具有ID ParentID的子类别 我一直在尝试整个周末没有运气,希望你能帮助我。我正在使用MSSQL 2008.
表结构应如下所示:

-Category1          
        SubCategory1  
        SubCategory2  
    ...  

-Category2  
            SubCategory2  
            SubCategory2  
    ...  

非常感谢任何帮助

3 个答案:

答案 0 :(得分:0)

检查公用表表达式,这些表达式允许您创建“递归选择”。 http://www.mssqltips.com/sqlservertip/1520/recursive-queries-using-common-table-expressions-cte-in-sql-server/

答案 1 :(得分:0)

您可以使用递归公用表表达式:

WITH cteTable(madeUpColA, madeUpColB, Etc) as
(
   -- this select statement with the union all is what does the recursive query
   SELECT aCol as madeUpColA, bCol as madeUpColB, Etc
   from dbo.someTable
   UNION ALL
   SELECT aCol as madeUpColA, bCol as madeUpColB, Etc
   FROM dbo.someTable st
   INNER JOIN cteTable as c -- inner join on relationship
   ON st.aCol = c.madeUpColA
)
-- this select statement is what retrieves the data from the above query
SELECT madeUpColA, madeUpColB, Etc
FROM cteTable
-- add your other criteria here

您可以使用MSDN documentation作为WITH语句来专门化您的查询

答案 2 :(得分:0)

您只是在寻找简单的自我加入吗?如果是这样,这应该有效:

select parent.category, subcat.category as subcategory
from Category subcat join
     Category parent
     on subscat.parentid = parent.categoryid

或者您是否需要遍历整个父母链?如果是这样,那么递归CTE是更好的方法。