建模树或图 SQL:如何分离节点属性和节点信息

发布于 2024-10-19 00:15:46 字数 694 浏览 2 评论 0原文

我正在建模一个概念本体,例如 polytree

使用 边缘列表模型 它将是:

CREATE TABLE nodes(
  nodeID CHAR(1) PRIMARY KEY
);

CREATE TABLE edges(
  childID CHAR(1) NOT NULL,
  parentID CHAR(1) NOT NULL,
  PRIMARY KEY(childID,parentID)
);

我的问题是我怎样才能在 SQL 中对其进行建模,以便节点可以具有其他属性,例如“类型”。例如。

(father-node) **Music**  

(child-node) **jazz** [type: genre], **soul** [type: genre]
(child-node) **concert** [type: performed], **DJ set** [type: performed]

I'm modelling a conceptual ontology like a polytree.

Using the edge list model it would be:

CREATE TABLE nodes(
  nodeID CHAR(1) PRIMARY KEY
);

CREATE TABLE edges(
  childID CHAR(1) NOT NULL,
  parentID CHAR(1) NOT NULL,
  PRIMARY KEY(childID,parentID)
);

My problem is how can I model it in SQL so that nodes can have other properties like "types". Eg.

(father-node) **Music**  

has

(child-node) **jazz** [type: genre], **soul** [type: genre]
(child-node) **concert** [type: performed], **DJ set** [type: performed]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2024-10-26 00:15:46

您应该查看 Celkos 嵌套集模型, http://mikehillyer.com/articles /managing-hierarchical-data-in-mysql/

但无论如何只需将流派 id 添加到您的节点表中

CREATE TABLE nodes(
  nodeID CHAR(1) PRIMARY KEY
  genre_id
);

You should check out Celkos nested set model, http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/

But anyway just add genre id to your nodes table

CREATE TABLE nodes(
  nodeID CHAR(1) PRIMARY KEY
  genre_id
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文