Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment diviser une chaîne d'enregistrements séparés par des virgules et les organiser ensuite de manière séquentielle dans MySQL?

Vous pouvez utiliser MySQL SUBSTRING_INDEX(). Il renverra la sous-chaîne de la chaîne donnée séparée par des virgules avant un nombre spécifié d'occurrences du délimiteur.

Essayez ceci, cela semble fonctionner correctement :

SELECT ID
       ,SUBSTRING_INDEX(SUBSTRING_INDEX(t.AgentID, ',', n.n), ',', -1) Agent
       ,Name
       ,SUBSTRING_INDEX(SUBSTRING_INDEX(t.Return_Date, ',', n.n), ',', -1) Return_Date
FROM table1 t CROSS JOIN 
 (
   SELECT a.N + b.N * 10 + 1 n
   FROM 
     (SELECT 0 AS N UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 UNION ALL SELECT 5 UNION ALL SELECT 6 UNION ALL SELECT 7 UNION ALL SELECT 8 UNION ALL SELECT 9) a
    ,(SELECT 0 AS N UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 UNION ALL SELECT 5 UNION ALL SELECT 6 UNION ALL SELECT 7 UNION ALL SELECT 8 UNION ALL SELECT 9) b
   ORDER BY n
  ) n

WHERE n.n <= 1 + (LENGTH(t.Return_Date) - LENGTH(REPLACE(t.Return_Date, ',', '')))
ORDER BY ID;

Vérifiez ceci..SQL Fiddle ICI

Pour une étude plus approfondie, allez sur MySQL Split String Function