Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle SQL, concatena più colonne + aggiungi testo

Hai due opzioni per concatenare le stringhe in Oracle:

  • CONCAT
  • Utilizzo di ||

Esempio CONCAT:

CONCAT(
  CONCAT(
    CONCAT(
      CONCAT(
        CONCAT('I like ', t.type_desc_column), 
        ' cake with '), 
      t.icing_desc_column),
    ' and a '),
  t.fruit_desc_column)

Usando || esempio:

'I like ' || t.type_desc_column || ' cake with ' || t.icing_desc_column || ' and a ' || t.fruit_desc_column