How to implement high performance tree view in SQL Server 2005

后端 未结 5 1204
遥遥无期
遥遥无期 2021-02-01 00:04

What is the best way to build the table that will represent the tree? I want to implement a select ,insert ,update and delete that will work well with big data. The select for e

5条回答
  •  悲&欢浪女
    2021-02-01 00:12

    If you have many updates and selects, the best option seems to be the Path Enumeration Model, which is briefly described here:

    http://www.sqlteam.com/article/more-trees-hierarchies-in-sql

提交回复
热议问题