简体   繁体   English

用HAVING,GROUP BY和GROUP_CONCAT计算SQL

[英]Count SQL with HAVING, GROUP BY and GROUP_CONCAT

How does query should look like for count the number of rows in this SQL. 查询如何计算此SQL中的行数。 I need exactly SQL query not PHP functions. 我需要确切的SQL查询而不是PHP函数。

SELECT
`main_table`.`entity_id`,
`main_table`.`supplier_id`,
`main_table`.`exported_at`,
`main_table`.`created_at`,
`main_table`.`updated_at`,
`main_table`.`product_id`,
`main_table`.`external_id`,
GROUP_CONCAT(DISTINCT
           (IF(attr.alias = 'attribute_set_name', attr_item.value, NULL)))                  AS `attribute_attribute_set_name`,
GROUP_CONCAT(DISTINCT (IF(attr.alias = 'title', attr_item.value, NULL)))                      AS `attribute_title`,
GROUP_CONCAT(DISTINCT (IF(attr.alias = 'normal_price', attr_item.value, NULL)))               AS `attribute_normal_price`,
(SELECT SUM(IF(attr_item.value = '', 1, 0)) = 0
FROM divante_integration_stock_attribute attr INNER JOIN divante_integration_stock_attribute_item AS attr_item
   ON attr_item.attribute_id = attr.entity_id
WHERE is_required = 1 AND attr_item.item_id = main_table.entity_id)                          AS `is_complete`,
(SELECT GROUP_CONCAT(attr.code)
FROM divante_integration_stock_attribute attr INNER JOIN divante_integration_stock_attribute_item AS attr_item
   ON attr_item.attribute_id = attr.entity_id
WHERE is_required = 1 AND attr_item.item_id = main_table.entity_id AND attr_item.value = '') AS `not_complete_attributes`,
`main_table`.`entity_id`,
`cp`.`sku`
FROM `divante_integration_stock` AS `main_table` LEFT JOIN `divante_integration_stock_attribute_item` AS `attr_item`
ON attr_item.item_id = main_table.entity_id
LEFT JOIN `divante_integration_stock_attribute` AS `attr` ON attr.entity_id = attr_item.attribute_id
LEFT JOIN `catalog_product_entity` AS `cp` ON main_table.product_id = cp.entity_id
GROUP BY `main_table`.`entity_id`
HAVING (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'attribute_set_name', attr_item.value, NULL))) LIKE '%ebook%') AND
   (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'title', attr_item.value, NULL))) LIKE '%sieci%') AND
   (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'normal_price', CAST(attr_item.value AS DECIMAL(12, 4)), NULL))) BETWEEN 40 AND 999999.9999)

you can do it with COUNT : 您可以使用COUNT

SELECT COUNT(*) FROM (
    //your sql
);

So you simply wrap another select in which you count the rows around your actual select. 因此,您只需包装另一个选择,就可以对实际选择周围的行进行计数。

so in your case: 所以在你的情况下:

SELECT COUNT(*) FROM (
    SELECT
    `main_table`.`entity_id`,
    `main_table`.`supplier_id`,
    `main_table`.`exported_at`,
    `main_table`.`created_at`,
    `main_table`.`updated_at`,
    `main_table`.`product_id`,
    `main_table`.`external_id`,
    GROUP_CONCAT(DISTINCT
               (IF(attr.alias = 'attribute_set_name', attr_item.value, NULL)))                  AS `attribute_attribute_set_name`,
    GROUP_CONCAT(DISTINCT (IF(attr.alias = 'title', attr_item.value, NULL)))                      AS `attribute_title`,
    GROUP_CONCAT(DISTINCT (IF(attr.alias = 'normal_price', attr_item.value, NULL)))               AS `attribute_normal_price`,
    (SELECT SUM(IF(attr_item.value = '', 1, 0)) = 0
    FROM divante_integration_stock_attribute attr INNER JOIN divante_integration_stock_attribute_item AS attr_item
       ON attr_item.attribute_id = attr.entity_id
    WHERE is_required = 1 AND attr_item.item_id = main_table.entity_id)                          AS `is_complete`,
    (SELECT GROUP_CONCAT(attr.code)
    FROM divante_integration_stock_attribute attr INNER JOIN divante_integration_stock_attribute_item AS attr_item
       ON attr_item.attribute_id = attr.entity_id
    WHERE is_required = 1 AND attr_item.item_id = main_table.entity_id AND attr_item.value = '') AS `not_complete_attributes`,
    `main_table`.`entity_id`,
    `cp`.`sku`
    FROM `divante_integration_stock` AS `main_table` LEFT JOIN `divante_integration_stock_attribute_item` AS `attr_item`
    ON attr_item.item_id = main_table.entity_id
    LEFT JOIN `divante_integration_stock_attribute` AS `attr` ON attr.entity_id = attr_item.attribute_id
    LEFT JOIN `catalog_product_entity` AS `cp` ON main_table.product_id = cp.entity_id
    GROUP BY `main_table`.`entity_id`
    HAVING (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'attribute_set_name', attr_item.value, NULL))) LIKE '%ebook%') AND
       (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'title', attr_item.value, NULL))) LIKE '%sieci%') AND
       (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'normal_price', CAST(attr_item.value AS DECIMAL(12, 4)), NULL))) BETWEEN 40 AND 999999.9999)
);

A simple way to do it would be to just make the entire query a sub-query, wrapped with a SELECT Count(1) FROM (); 一种简单的方法是使整个查询成为一个子查询,并用SELECT Count(1) FROM ();包装SELECT Count(1) FROM (); :

SELECT Count(1)
FROM
(
    SELECT
    `main_table`.`entity_id`,
    `main_table`.`supplier_id`,
    `main_table`.`exported_at`,
    `main_table`.`created_at`,
    `main_table`.`updated_at`,
    `main_table`.`product_id`,
    `main_table`.`external_id`,
    GROUP_CONCAT(DISTINCT
               (IF(attr.alias = 'attribute_set_name', attr_item.value, NULL)))                  AS `attribute_attribute_set_name`,
    GROUP_CONCAT(DISTINCT (IF(attr.alias = 'title', attr_item.value, NULL)))                      AS `attribute_title`,
    GROUP_CONCAT(DISTINCT (IF(attr.alias = 'normal_price', attr_item.value, NULL)))               AS `attribute_normal_price`,
    (SELECT SUM(IF(attr_item.value = '', 1, 0)) = 0
    FROM divante_integration_stock_attribute attr INNER JOIN divante_integration_stock_attribute_item AS attr_item
       ON attr_item.attribute_id = attr.entity_id
    WHERE is_required = 1 AND attr_item.item_id = main_table.entity_id)                          AS `is_complete`,
    (SELECT GROUP_CONCAT(attr.code)
    FROM divante_integration_stock_attribute attr INNER JOIN divante_integration_stock_attribute_item AS attr_item
       ON attr_item.attribute_id = attr.entity_id
    WHERE is_required = 1 AND attr_item.item_id = main_table.entity_id AND attr_item.value = '') AS `not_complete_attributes`,
    `main_table`.`entity_id`,
    `cp`.`sku`
    FROM `divante_integration_stock` AS `main_table` LEFT JOIN `divante_integration_stock_attribute_item` AS `attr_item`
    ON attr_item.item_id = main_table.entity_id
    LEFT JOIN `divante_integration_stock_attribute` AS `attr` ON attr.entity_id = attr_item.attribute_id
    LEFT JOIN `catalog_product_entity` AS `cp` ON main_table.product_id = cp.entity_id
    GROUP BY `main_table`.`entity_id`
    HAVING (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'attribute_set_name', attr_item.value, NULL))) LIKE '%ebook%') AND
       (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'title', attr_item.value, NULL))) LIKE '%sieci%') AND
       (GROUP_CONCAT(DISTINCT (IF(attr.alias = 'normal_price', CAST(attr_item.value AS DECIMAL(12, 4)), NULL))) BETWEEN 40 AND 999999.9999)
);

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

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