sql >> Database >  >> RDS >> Mysql

Hoe voeg je twee kolommen samen met één geserialiseerde data?

MySQL weet niet wat een PHP-serialisatie is. U kunt de ID's van categorieën opslaan als een tekenreeks in het volgende formaat:

2,4,5,10,...

Gebruik dan een combinatie van SUBSTRING_INDEX() en FIND_IN_SET() MySQL-functies om het bestaan ​​van categories.id te controleren in ecommerce_products.catid :

SUBSTRING_INDEX(
    SUBSTRING_INDEX(ecommerce_products.catid,
        ',',
        FIND_IN_SET(categories.id, ecommerce_products.catid)
), ',', -1)

Om de categorietitels voor elk productrecord te selecteren, moeten we de titels samenvoegen door GROUP_CONCAT() functie, dus de uiteindelijke vraag zou ongeveer als volgt zijn:

SELECT p.id,
       p.catid
       GROUP_CONCAT(cat.title ORDER BY cat.id SEPARATOR '|') as 'categories',
       p.manid,
       p.name
FROM ecommerce_products AS p
LEFT JOIN categories AS cat
    ON cat.id = SUBSTRING_INDEX(SUBSTRING_INDEX(p.catid, ',', FIND_IN_SET(cat.id, p.catid)), ',', -1)
-- more query...
GROUP BY p.id; -- Group the result to concatenate the categories titles

In deze benadering moet u mogelijk $this->db->query(); methode om de query handmatig uit te voeren.

Opmerking:
Als alternatief kunt u het volgende gebruiken voor ON verklaring:

LEFT JOIN categories AS cat
    ON p.catid REGEXP CONCAT('[,]{0,1}', cat.id, '[,]{0,1}')

Testcase

Hier is mijn testcase op SQLFiddle :

SELECT p.id,
       p.name,
       GROUP_CONCAT(c.title ORDER BY c.id SEPARATOR '|') as 'categories'
FROM products as p
JOIN categories as c
  ON c.id = SUBSTRING_INDEX(SUBSTRING_INDEX(p.cat_id, ',', FIND_IN_SET(c.id, p.cat_id)) , ',', -1)
GROUP BY p.id;

Resultaat:

ID    NAME          CATEGORIES
--    ---------     -----------
1     Product 1     Cat 1|Cat 3
2     Product 2     Cat 2|Cat 4
3     Product 3     Cat 1|Cat 4
4     Product 4     Cat 2|Cat 3


  1. SQL Server 2008 - volgorde op tekenreeksen met numeriek nummer

  2. Doctrine2 - Meerdere inserts in één keer

  3. Mysql2::Error:U heeft een fout in uw SQL-syntaxis

  4. com.mysql.jdbc.PacketTooBigException