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

Comment diviser une ligne en plusieurs lignes dans postgresql

Vous pouvez utiliser regexp_split_to_table avec une anticipation négative pour les endommagés ;

SELECT "ID", regexp_split_to_table("Cars", '((, (?!damaged))| and )') "Cars" 
FROM mytable;

 ID |      Cars
----+-----------------
  1 | opel
  1 | honda
  1 | land rover
  2 | ford
  2 | porshe, damaged
  3 | volkswagen
  4 | opel
  4 | seat, damaged
(8 rows)

Un SQLfiddle pour tester avec .

EDIT :Pour vos nouveaux exemples, la regex a dû être légèrement modifiée ;

SELECT "ID", regexp_split_to_table("Cars", '(([,;] (?!damaged))|[,;]? and )') "Cars" 
FROM mytable;

Un autre SQLfiddle .