这是我的 SQL 代码。我已经选择了每一行的价格和每一行的里程碑以及加入表格的 id,但我只有一行的结果。
执行多个过滤器的 PHP 代码:
if($i==0)
{
if($fc == "projet")
{
$filtre_bdd .= "AND p.$fc = '$fv' ";
}
else
{
$filtre_bdd .= "AND cible.$fc = '$fv' ";
$i= $i + 2;
}
}
SQL查询:
SELECT cible.prix,a.valeur,a.idroute,cible.id,p.id,
SUM(DISTINCT a.valeur) AS total_avances, /* the milestone sum the unique one */
SUM(a.valeur) AS total_avance, /* the milestone sum of each row */
SUM(cible.prix) AS total_prix /* the price sum */
FROM avances AS a,routes AS cible,projets AS p
WHERE a.idroute = cible.id AND p.id = cible.idprojet $filtre_bdd /* the conditions to join the tables and do the filter */
GROUP BY cible.id, a.idroute
HAVING total_avances <> cible.prix AND cible.prix - total_avances >- 1
现在我怎样才能在所有这些条件下获得价格的总和和里程碑的总和?目标表包含项目的 id 和里程碑的 id。我们必须对每一行的里程碑和总和进行总和,并将其与项目价格进行比较。