简单的数据库方案帮助

发布于 2024-10-14 02:30:50 字数 108 浏览 1 评论 0原文

我需要为每个数据库行存储多个 4 字母字符串,但 4 字母字符串的数量每次都可能不同。

那么设置一个新表并为每个 4 个字母的字符串添加一个新行以及另一个表中相关行的 id 会更容易吗?

I need to store multiple 4 letters strings for each database row but the amount of 4 letter strings could be different every time.

So would it be easier to setup a new table and add a new row for each 4 letter string with the id of the related row in the other table ?

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

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

发布评论

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

评论(1

℡寂寞咖啡 2024-10-21 02:30:50

出于规范化原因和性能以及以后能够执行高效查询,您可能希望将其存储在相关表中。

Main    : ID, other columns
Related : Main_ID, 4-letter-string

如果您没有其他内容要存储在主表中,则只需将它们存储为多行,并通过公共 ID 进行关联。

如果启用全文搜索,您可以将其存储在一条记录中,并且仍然可以有效地进行搜索,但我怀疑您的 4 个字母字符串是自然语言单词,因此它可能也不适合。

For normalisation reasons and performance as well as being able to later perform efficient queries, you would want to store it in a related table.

Main    : ID, other columns
Related : Main_ID, 4-letter-string

If there is nothing else you will store in the Main table, then just store them as multiple rows, and relate via a common ID.

You can store it on one record and still search efficiently, if FULLTEXT searching is turned on, but I doubt your 4-letter strings are natural language words, so it may not suit as well.

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