我有一个足球场的桌子,我需要根据日期返回上一场和下一场比赛。有一个简单的方法吗?该表有日期,时间,团队,因此需要按团队进行分组。这就是我目前为获得下一个灯具而做的事情。
任何帮助将不胜感激:)
答案 0 :(得分:0)
你必须使用像php这样的脚本语言,至少我会这样做。我不是一个专业的开发人员,但我写了快速跟随PHP脚本,从mysql数据库中获取前一个匹配。你可以为下一场比赛做类似的事情。可能有一种更容易的方法,但这个脚本有效...
<?php
/*get the current day*/
$day = date("d");
$previous = array();
$j = 0; /*this variable will say on which index we have to store the team name in the array previous*/
$k = 1; /*this variable will say how much days we have to count back*/
/*now we get the previous math out of the database be counting down the days and looking if there is a record*/
for($i=$day; $i>0; $i--) {
$date = date("dmY", strtotime("-$k days"));
$result = mysql_query("SELECT * FROM `football` WHERE `date`='$date'") or die (mysql_error());
$num = mysql_num_rows($result);
$fetch = mysql_fetch_array($result);
if($num == 1) {
$previous[$j] = $fetch["team"];
$j++;
}
$k++;
}
echo $previous[0];
?>