我是这个领域的新手,喜欢编写一个管理家谱数据的应用程序。我主要关心的是如何从MySQL中存储和检索这些数据。我知道像Oracle这样的数据库是为递归查询而优化的,但也许我可以找到一个替代解决方案来使用MySQL,我不支持"CONNECT"。PS。我知道有成千上万的现有开源解决方案,但考虑到这些数据将是功能的有限部分,我需要控制完整的代码。
我在网上快速浏览了一下,发现了一些有趣的方法,例如基于间隔的算法,它非常适合查询,但不适合更新/删除。
我将研究基于前缀的(杜威)方法,但人们可能知道一种有效且经验证的共享方法?
感谢
鳃
第一个问题,设计数据模式:我使用父行的外键来保持层次结构。很简单。
第二个问题,检索祖先/后代:正如您所解释的,问题与选择有关:选择一些人和所有祖先的后代。要解决这个问题,您应该创建一个新的树表。此表包含对:一个人与所有祖先(及其自身)的组合:
people( id, name, id_parent)
people_tree( id, id_ancestor, distance )
注意,使用这种结构可以很容易地查询层次结构。样本:某人的所有后代:
select people.*, distance
from
people p
inner join
people_tree t
on ( p.id = t.id)
where
id_ancesor = **sombody.id **
你可以玩远距离游戏,只得到祖父母、孙子女等…
最后一个问题,保持树:树必须一直到数据。您应该将其自动化:people
上的触发器或CRUD操作的存储过程,
已编辑
因为这是一个家谱树,每个人都必须有父母两个参考:
people( id, name, id_parent, id_mother)
然后,需要2棵树:
parent_ancestors_tree( id, id_ancestor, distance )
mother_ancestors_tree( id, id_ancestor, distance )
David要求提供样本数据:
people: id name id_parent id_mother
1 Adam NULL NULL
2 Eva NULL NULL
3 Cain 1 2
.. ...
8 Enoc 3 5
parent_ancestors_tree id id_ancestor distance
(Adam) 1 1 0
(Eva) 2 2 0
(Cain) 3 3 0
3 1 1
(Enoc) 8 8 0
8 3 1
8 1 2
mother_ancestors_tree id id_ancestor distance
(Adam) 1 1 0
(Eva) 2 2 0
(Cain) 3 3 0
3 2 1
(Enoc) 8 8 0
-- here ancestors of Enoc's mother --
问候。
我还建议使用相邻的树模型,对于更复杂的逻辑,我建议使用简单的mysql查询(Joins)。很可能创建树更重要。当应用程序完成并且一切正常时,您可以进行更多的数据挖掘。