PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como dividir a linha em muitas linhas no postgresql


Você pode usar regexp_split_to_table com uma antecipação negativa para danificado;
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)

Um SQLfiddle para testar .

EDIT:Para seus novos exemplos, o regex teve que ser um pouco ajustado;
SELECT "ID", regexp_split_to_table("Cars", '(([,;] (?!damaged))|[,;]? and )') "Cars" 
FROM mytable;

Outro SQLfiddle .