gpt4 book ai didi

Mysql db设计用户、团队、组

转载 作者:行者123 更新时间:2023-11-29 22:52:35 41 4
gpt4 key购买 nike

我有 3 个表用户、团队、组。每个团队可以有多个组。每个组中都有一个或多个用户。用户可以属于多个组。您认为对所有用户使用组会更好吗(这样每个团队至少有一个名为所有用户的组)还是引入另一个表 team_user (id, user_id, team_id)

谢谢

最佳答案

不太明白你的意思

Do you think it would be better to use group for all users (so every team would have at least one group called all users)

但无论如何我都会同意你的“或”部分。

如果一个用户可以属于多个组,并且组可以包含多个用户,那么您就拥有多对多关系,在查看规范化时最好用 3 个表来描述。

User
----
userId PK

Group
----
groupId PK
teamId -- assumption here, you said a team can have multiple groups, i was interpreting that as a group can't belong to multiple teams.

Team
----
teamiD PK

user_group
----
userId PK
groupId PK

user_group -- unique constraint on userId/groupId
----
id PK
userId
groupId

关于Mysql db设计用户、团队、组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28832228/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com