声明变量MySQL

时间:2018-10-31 16:42:52

标签: php mysql variables phalcon

我试图声明变量并像这样运行查询:

$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的结果,即主要查询。

这是我第一次声明变量,但我不知道我是否做对了。

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

1 个答案:

答案 0 :(得分:2)

您不需要在单独的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