我在网上找到了几篇文章,提供了如何在 SQL 中对各种类型的图(尤其是 DAG)进行建模的示例,但鉴于它们所建模的内容相对简单,它们似乎都非常复杂。
是否有这样做的最佳/标准方法?我目前的想法是这样的:
create table node (
id int not null auto_increment,
name TEXT
)
create table edge (
from_node int not null,
to_node int not null,
weight float
)
这有什么问题吗?任何人都知道更好(也许更强大)的方式?