sql >> Base de Datos >  >> RDS >> Oracle

SELECCIONE devolver varias filas como cadena

Asumiendo 11g (cuando listagg fue introducido):

  select    CONTRACT_NAME
         || '|'
         || LISTAGG(D.SERIALNUM, ',') within group (order by CONTRACTID)
    from CONTRACTS C join DEVICES D on D.FK_CONTRACTID = C.CONTRACTID
group by CONTRACT_NAME