Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于数据库将数据存储为二维表,我想将树状数据存储到数据库中,空间浪费很少。我该怎么做?
使用带有空间的树状结构保存数据:您将用完具有更大层次结构的树的空间。
尝试这个
PkId Name ParentId(FkId to PkId ) --------------------- 1 root 0 2 child1 1 3 child2 1 4 child3 2
然后你可以使用一个函数来生成树结构。