gpt4 book ai didi

mysql - 应用程序的数据库结构

转载 作者:搜寻专家 更新时间:2023-10-30 21:47:16 26 4
gpt4 key购买 nike

我正在 MySQL 上构建一些关系数据库,但遇到了一些问题。
例如,我有一个表 Client 和 Cources。
一个客户端可以访问多个Cources。
这如何存储在数据库中?

最佳答案

我猜这实际上是一个多对多关系,您可以使用三个表对其进行建模:

Client
- ClientId (PK)
- other fields

Cource
- CourceId (PK)
- other fields

ClientCourceVisit
- ClientId (FK)
- CourceId (FK)
- other fields

关于mysql - 应用程序的数据库结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13960633/

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