Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Verwenden der Pivot-Funktion in MySQL, um a priori eine Tabelle zu erstellen

Für Ihre GROUP_CONCAT-Abfrage; In Ihrem Fall stmt beziehen Sie sich auf Ihre Produkttabelle als product selbst. Aber in Ihrer Join-Abfrage beziehen Sie sich auf die Produkttabelle als Alias ​​p . Da die erste group_concat-Abfrage Teil der Join-Abfrage ist, müssen Sie die Tabellen-Aliase beibehalten (Änderungen in Zeile 5 vorgenommen)

SET @sql = NULL;
SELECT
  GROUP_CONCAT(DISTINCT
    CONCAT(
      'count(case when p.name = ''',  
      product.name,
      ''' then 1 end) AS ',
      replace(product.name, ' ', '')
    )
  ) INTO @pivotsql
from product;

SET @sql = CONCAT('SELECT omd.order_match_id, ', @pivotsql, ' from order_match_detail omd
left join order_match om
  on omd.order_match_id = om.id
left join product p
  on omd.product_id = p.id
  where om.order_status_id in (4, 5, 6, 8)
group by omd.order_match_id');

PREPARE stmt FROM @sql;
EXECUTE stmt;