由于我远不是 php 专家,这让我惊呆了,我似乎无法为它编写脚本。
让我们看看我是否可以尽可能清楚地解释这一点。
假设我有 table1 和 table2
Table1 = (teamid, name, round1pos, round1score, round2pos, round2score)
Table2 = (id, tournamentid, teamid, name, round1pos, round1score, round2pos, round2score...till round10pos/round10score)
当从表 1 复制到表 2 时,我想在它前面添加 2 个字段。(id和锦标赛ID)
我面临的问题是 Table1 每次都有不同数量的 roundxpos/roundxscore。
基本上我想要做的是一旦锦标赛结束我想删除表。但将其中的数据复制到另一个表以存档结果。但每场比赛可以有不同大小的回合。
我希望有人能理解我想要实现的目标 +_+。