繁体   English   中英

包含两个临时表创建的mySQL语句出现问题

[英]Issue with an mySQL sentence including two temporary table creation

我有一个mySQL语句,如果在phpMyAdmin中执行它,它的作用就像一个超级按钮:

CREATE TEMPORARY TABLE hash1
      SELECT * FROM
      (
        (
            SELECT DISTINCT feature_id AS fl, feature_value AS fv FROM gf_product_features WHERE feature_id = '1' AND feature_value = 'No frost total'
        ) UNION 
        (
            SELECT DISTINCT feature_id AS fl, feature_value AS fv FROM gf_product_features WHERE feature_id = '3' AND feature_value = '43'
        )) AS q;


      CREATE TEMPORARY TABLE hash2
        SELECT * FROM hash1;

        SELECT 
          p.id AS id, 
          p.main_image AS main_image, 
          p.type AS taxonomy, 
          p.name AS model, 
          p.sku AS sku, 
          p.price AS price, 
          b.brand_name AS brand_name, 
          b.brand_image AS brand_logo,
          pf.feature_value AS feature_value, 
          f.feature AS feature_label,
          f.id AS feature_id
        FROM
        (
          SELECT  a.*
          FROM    gf_product AS a
          INNER JOIN
          (
            SELECT product_id
            FROM
            (
              SELECT a.product_id , count(*) AS commons
              FROM   gf_product_features AS a
              INNER JOIN hash1 AS b 
                ON    a.feature_id = b.fl 
                AND   a.feature_value = b.fv 
              GROUP BY a.product_id 
              ) AS features
              WHERE commons = (SELECT count(*) AS count FROM hash2)  
            ) b1 ON a.id = b1.product_id 
          ) AS p
        INNER JOIN  gf_brands AS b 
            ON p.brand_id = b.id
        INNER JOIN  gf_product_features AS pf 
            ON pf.product_id = p.id   
        INNER JOIN  gf_features AS f 
            ON pf.feature_id = f.id
        ORDER BY    price ASC, 
                    feature_id ASC

我想通过Ajax请求执行php函数,该函数可以动态构造上述sql语句,但是我总是在浏览器的控制台中收到此错误:

    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TEMPORARY TABLE hash2
        SELECT * FROM hash1;

        SELECT 
       ' at line 12

因此,也出现以下错误:

Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in /www/htdocs/example/inc/functions.php on line 538

这对应于我的php代码的这一行:

while ($row = mysqli_fetch_assoc($result))

也许克隆HASH2表从HASH1

CREATE TEMPORARY TABLE hash2
        SELECT * FROM hash1;

听起来很奇怪,但是如果我不这样做,在我的phpMyAdmin中会出现以下错误:

 #1137 - Can't reopen table: 'b'

我不明白为什么我的sql语句在phpMyadmin中能正常工作,但是,当我在php文件中构造它时,它不起作用。 有人可以帮我吗?

有关更多信息,这是我的PHP代码:

    function getProductsFromFilteredQuery($connection, $filters, &$html)
{
    $sql = '';
    $m = count($filters); // $filters are an array of values like this: ['value1A, value2A', 'value1B, value2B', ...]

    $sql = 'CREATE TEMPORARY TABLE hash1
      SELECT * FROM
      (';

    for ($n = 0; $n < $m; $n++)
    {
        $string                 = explode(', ', $filters[$n]);
        $feature_id         = $string[0];
        $feature_value  = $string[1];

        $sql .= "
        (
            SELECT DISTINCT feature_id AS fl, feature_value AS fv FROM gf_product_features WHERE feature_id = '" . $feature_id . "' AND feature_value = '" . $feature_value . "'
        )";

        if ($n < ($m - 1))
        {
            $sql .= ' UNION ';
        }
    }


    $sql .=  ') AS q;


      CREATE TEMPORARY TABLE hash2 -- In this line I get an error
        SELECT * FROM hash1;

        SELECT 
          p.id AS id, 
          p.main_image AS main_image, 
          p.type AS taxonomy, 
          p.name AS model, 
          p.sku AS sku, 
          p.price AS price, 
          b.brand_name AS brand_name, 
          b.brand_image AS brand_logo,
          pf.feature_value AS feature_value, 
          f.feature AS feature_label,
          f.id AS feature_id
        FROM
        (
          SELECT  a.*
          FROM    gf_product AS a
          INNER JOIN
          (
            SELECT product_id
            FROM
            (
              SELECT a.product_id , count(*) AS commons
              FROM   gf_product_features AS a
              INNER JOIN hash1 AS b 
                ON    a.feature_id = b.fl 
                AND   a.feature_value = b.fv 
              GROUP BY a.product_id 
              ) AS features
              WHERE commons = (SELECT count(*) AS count FROM hash2)  
            ) b1 ON a.id = b1.product_id 
          ) AS p
        INNER JOIN  gf_brands AS b 
            ON p.brand_id = b.id
        INNER JOIN  gf_product_features AS pf 
            ON pf.product_id = p.id   
        INNER JOIN  gf_features AS f 
            ON pf.feature_id = f.id
        ORDER BY    price ASC, 
                    feature_id ASC';

    $result = mysqli_query($connection, $sql);

    while ($row = mysqli_fetch_assoc($result)) // In this line I get an error too
    {
        // Do some stuff... and at last, return the resulting $html
    }
};

我终于可以找到错误。 在我的phpMyAdmin中,它工作得很好,因为有人可以在SQL控制台中执行多个查询。 没问题。

但是,通过PHP编写mySQL查询代码时,一次只能运行一个mySQL语句。 嗯,有一个例外:您可以使用mysqli_multi_query + mysqli_more_results或类似的东西。 但是按照我的编码,你不能。

因此,有两种选择:按照上面两个链接的页面所述重写PHP代码,或者在PHP函数中执行多个mysqli_query

我决定通过第二个选项进行操作,因此工作代码如下(注意每个mysqli_query之后的注释):

function getProductsFromFilteredQuery($mysqli, $filters, &$html) {
$sql = '';
$m = count($filters);

$sql        = 'DROP TEMPORARY TABLE IF EXISTS hash1;';
$result = mysqli_query($mysqli, $sql); // A single query

$sql        = 'DROP TEMPORARY TABLE IF EXISTS hash2;';
$result = mysqli_query($mysqli, $sql); // Another single query

$sql        = 'CREATE TEMPORARY TABLE hash1
  SELECT * FROM
  (';

for ($n = 0; $n < $m; $n++)
{
    $string                 = explode(', ', $filters[$n]);
    $feature_id         = $string[0];
    $feature_value  = $string[1];

    $sql .= "
    (SELECT DISTINCT feature_id AS fl, feature_value AS fv FROM gf_product_features WHERE feature_id = '" . $feature_id . "' AND feature_value = '" . $feature_value . "')";

    if ($n < ($m - 1))
    {
        $sql .= ' UNION ';
    }
}


$sql .=  ') AS q1';
$result = mysqli_query($mysqli, $sql); // Another single query

$sql =  'CREATE TEMPORARY TABLE hash2
    SELECT * FROM hash1;';
$result = mysqli_query($mysqli, $sql);  // Another single query

$sql = 'SELECT 
              p.id AS id, 
              p.main_image AS main_image, 
              p.type AS taxonomy, 
              p.name AS model, 
              p.sku AS sku, 
              p.price AS price, 
              b.brand_name AS brand_name, 
              b.brand_image AS brand_logo,
              pf.feature_value AS feature_value, 
              f.feature AS feature_label,
              f.id AS feature_id
            FROM
            (
              SELECT  a.*
              FROM    gf_product AS a
              INNER JOIN
              (
                SELECT product_id
                FROM
                (
                  SELECT a.product_id , count(*) AS commons
                  FROM   gf_product_features AS a
                  INNER JOIN hash1 AS b 
                    ON    a.feature_id = b.fl 
                    AND   a.feature_value = b.fv 
                  GROUP BY a.product_id 
                  ) AS features
                  WHERE commons = (SELECT count(*) AS count FROM hash2)  
                ) b1 ON a.id = b1.product_id 
              ) AS p
            INNER JOIN  gf_brands AS b 
                ON p.brand_id = b.id
            INNER JOIN  gf_product_features AS pf 
                ON pf.product_id = p.id   
            INNER JOIN  gf_features AS f 
                ON pf.feature_id = f.id
            ORDER BY    price ASC, 
                        feature_id ASC';

$result = mysqli_query($mysqli, $sql);  // Another single query. The last one.

while ($row = mysqli_fetch_assoc($result))
{
    // My stuff here...
}
}; // @END of function

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM