我有一个查询检查表中的一些数据(名称和与之关联的数字)并返回我需要设置为变量的其中一个。
但是,当我需要考虑尚未在表中的项目(新来者)时,我遇到了麻烦,因为它们应该被视为具有 0 作为数据,但很明显它们在数据库中没有。
脚本如下:
$jQuery = mysql_query("SELECT team, points FROM DCO_standings_teams WHERE competition='1' AND team='$teamname' AND year='$lastyear'");
{
$points="$row[1]";
$pointsmult = $points*50;
$pointsoffer = $wage_offer/100;
$bid_total = $pointsoffer+$pointsmult+$loyaltybonus;
}
在这种情况下,假设 A 队从去年获得 12 分。它将“12”设置为 $points 并继续进行所有其他计算。
我需要告诉网站,如果在 DCO_standings_teams 表中没有找到记录,那么它应该将 $points 设置为 0。
任何帮助表示赞赏,谢谢!