特别独特的柱子

发布于 2024-10-27 14:47:36 字数 540 浏览 2 评论 0原文

我遇到的情况是,一个网站(来源)有多个提要(按类别分开),

Feed Table
feed_id | source_id | feed_url
1       |  1        | http://example.com/rss?category=1
2       |  1        | http://example.com/rss?category=5
3       |  2        | http://textample.com/rss

Item Table
item_id | true_id | feed_id
1       | 1332    | 1
2       | 76549   | 1
3       | 76549   | 2
4       | 76549   | 3

真实 id 是我尝试从源网站获取的 id。
我想要项目 id 2 & 3 项相同,因为它们共享相同的源 (example.com),第 4 项不同,因为它具有不同的源 (textample.com) 有没有办法可以强制实现一致性,而无需将源 ID 添加到项目表中?

I have a situation where a website (a source) has multiple feeds (category separated)

Feed Table
feed_id | source_id | feed_url
1       |  1        | http://example.com/rss?category=1
2       |  1        | http://example.com/rss?category=5
3       |  2        | http://textample.com/rss

Item Table
item_id | true_id | feed_id
1       | 1332    | 1
2       | 76549   | 1
3       | 76549   | 2
4       | 76549   | 3

the true id is the id I try to get from the source site.
I want the item id 2 & 3 are the same, because they share the same source (example.com), item 4 is not the same because it has a different source (textample.com)
Is there a way I can enforce that consistency, without adding the source id to the Item Table?

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

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

发布评论

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

评论(1

万劫不复 2024-11-03 14:47:36

跑步

ALTER TABLE `itemTable` ADD UNIQUE (`feed_id`);

RUN

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