声明变量 MySQL

Declare variables MySQL

我正在尝试声明变量和 运行 查询,如下所示:

$sql = "SELECT @dateconsult := (YEARWEEK('2018-10-01',3)),
               @countunits  := ( SELECT COUNT(s.id_production)
                                 FROM sw_sowing
                                 WHERE status != 0
                                 AND YEARWEEK(date,3) <= @dateconsult
                                 GROUP BY id_production_unit_detail
                               ),
               @quadrants   := ( SELECT DISTINCT value
                                 FROM cf_config
                                 WHERE parameter = 'PLANTHEALTH'
                               );

       SELECT FORMAT(((count_quadrant * 100)/(total_units * Cuadrantes)),3) AS incidence
       FROM (
             SELECT @countunits AS total_units, @quadrants AS Cuadrantes,
             FROM ph_planthealth
             INNER JOIN ph_planthealth_detail ON ph_planthealth_detail.id_p = ph_planthealth.id
             WHERE YEARWEEK(ph_planthealth.date,3) = @dateconsult
             AND ph_planthealth.status = 200
             AND ph_planthealth.id_tenant = 1
             AND ph_planthealth_detail.id_plague != 0
             GROUP BY ph_planthealth_detail.id_plague
      ) AS s
      ORDER BY incidence DESC; ";

    $plague = $this->db->fetchAll($sql, Phalcon\Db::FETCH_ASSOC, $options) ";

问题是它显示了第一个 SELECT 的结果,这是我声明的变量,而不是第二个 SELECT 的结果,它是主要查询。

第一次声明变量,不知道对不对

感谢您对此主题的评论和帮助。

您不需要在单独的 SELECT 中进行变量赋值。您可以通过加入主查询来完成它们。

SELECT FORMAT(((count_quadrant * 100)/(total_units * Cuadrantes)),3) AS incidence
FROM (
     SELECT @countunits AS total_units, @quadrants AS Cuadrantes,
     FROM ph_planthealth
     INNER JOIN ph_planthealth_detail ON ph_planthealth_detail.id_p = ph_planthealth.id
     WHERE YEARWEEK(ph_planthealth.date,3) = @dateconsult
     AND ph_planthealth.status = 200
     AND ph_planthealth.id_tenant = 1
     AND ph_planthealth_detail.id_plague != 0
     GROUP BY ph_planthealth_detail.id_plague
) AS s
CROSS JOIN (
    SELECT @dateconsult := (YEARWEEK('2018-10-01',3)),
           @countunits  := ( SELECT COUNT(s.id_production)
                             FROM sw_sowing
                             WHERE status != 0
                             AND YEARWEEK(date,3) <= @dateconsult
                             GROUP BY id_production_unit_detail
                           ),
           @quadrants   := ( SELECT DISTINCT value
                             FROM cf_config
                             WHERE parameter = 'PLANTHEALTH'
                           )
) AS vars
ORDER BY incidence DESC