数据库结构

发布于 2024-08-04 08:15:37 字数 136 浏览 4 评论 0原文

我正在建立一个与赌博相关的网站,人们可以在其中观看足球比赛(比赛)。 一场比赛的结果是:主胜-平局-客胜。我有一张用于球队的桌子,一张用于固定赛程的桌子,另一张用于投注的桌子。赛程表有主队和客队。但如何为平局下注建模呢?让投注表参考赛程和球队很容易。但平局?

I'm building a gambling-related website where people can be on soccer fixtures (matches).
A fixture ends up with a result: home win - draw - away win. I have one table for teams and one table for fixtures and another for bets. The fixtures table has a home team and an away team. But how do I model a draw bet? It's easy to have the bet table refer to the fixture and refer to the team. But a draw?

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

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

发布评论

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

评论(1

当爱已成负担 2024-08-11 08:15:37

最基本的系统:

3 张桌子,一张用于球队,一张用于赛程,一张用于投注。结果表示为:

0 =>平局,1 =>主队获胜,2 =>客场获胜

球队:

id | name
-----------------
 1 | Some team 
 2 | Some team
 3 | Some team

赛程:

id | home team | away team | result
--------------------------------------
 1 |         1 |         3 |        0
 2 |         2 |         3 |        2
 3 |         1 |         3 |        1

投注:

id | fixture   | outcome    
---------------------------
 1 |         1 |         0 
 2 |         2 |         1 
 3 |         1 |         3 

The most basic system:

3 tables, one for teams, one for fixtures and one for bets. Outcomes are represented by:

0 => Draw, 1 => Home win, 2 => Away win

Teams:

id | name
-----------------
 1 | Some team 
 2 | Some team
 3 | Some team

Fixtures:

id | home team | away team | result
--------------------------------------
 1 |         1 |         3 |        0
 2 |         2 |         3 |        2
 3 |         1 |         3 |        1

Bets:

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