数据库:在一个表中共享两组值?

发布于 2024-12-07 10:27:08 字数 697 浏览 0 评论 0原文

首先我要说的是,我不是 DBA,而且到目前为止我还没有进行过大量的数据库开发(所以我希望我没有问一些显而易见的问题)。

挑战:

  1. 我有一个带有预定义值的字典应用程序。
  2. 可以通过在线更新添加新值。
  3. 用户不允许修改这些应用程序值,但他们可以添加/删除自己的值。
  4. 数据库 (sqlite3) 将包含少量值 (~2K-3K)。
  5. 用户值和应用程序值的数据库架构完全相同。

可能的解决方案:

  • 解决这个问题的一种方法是创建两个具有相同架构的不同表,并在查询数据库时连接两个表中的数据。

  • 另一种方法是使用一个表,其中应用程序值将从 ID=0 开始,用户值将从 ID=100000 开始(例如)。在线更新将合并 ID=100000 以下的新值,以便用户值保持不变。

我更喜欢第二种解决方案 - 它会在运行时避免 JOIN,并且查询将保持简单。
但是,对第一个解决方案中的应用程序值的更新将要求我将应用程序表替换为新的应用程序表。

请告诉我您的想法:

  • 哪种解决方案更好?
  • 我缺少哪些优点/缺点?
  • 有更好的第三种解决方案吗?

I'll start by saying I am not a DBA and I didn't get to do heavy database development so far (so I hope I'm not asking something obvious).

The Challenge:

  1. I have a dictionary application with pre-defined values.
  2. New values may be added via online updates.
  3. Users are not allowed to modify these application-values, but they may add/delete values of their own.
  4. The database (sqlite3) will contain a small amount of values (~2K-3K).
  5. The database schema is exactly the same for both user and application values.

Possible solutions:

  • One way to go about it would be to create two different tables having the same schema, and JOIN the data from both tables when querying the database.

  • A different approach would be to have a single table in which application-values will start at ID=0, and user-values will start at ID=100000 (for example). Online updates will merge new values below ID=100000 such that user values will remain intact.

I prefer the second solution - it'll avoid JOINs during runtime and the queries will remain simple.
However, an update to the application-values in the first solution would require me to just replace the application table with the new one.

Please let me know what you think:

  • Which solution is better?
  • What are the pros/cons that I'm missing?
  • Is there an even-better third solution?

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

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

发布评论

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

评论(1

不及他 2024-12-14 10:27:08

为什么不只是在表中“键入”一列并用用户/应用程序填充它?

就我个人而言,我讨厌有意义的ID......

Why not just a column 'type' to your table and fill it with user/application?

Personaly I hate meaningfull ID's....

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