Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Concatened colum not displayed

Christian Pitet.18 hours ago

Hi,

Under Oracle 19c, I have a select:

SELECT max(cih.date_action_effectuee) AS max_date,  min(cih.date_action_effectuee) AS min_date,
      cih.id_interaction,
      cih.type_interaction, 
      ce.entreprises || ' ' || cih.type_interaction AS display
 FROM cs_interaction_historique cih
 LEFT JOIN cs_entreprise ce
   ON cih.entreprise = ce.id
GROUP BY cih.id_interaction,
         cih.type_interaction,
         ce.entreprises

I ge this result:

But the cih.type_interaction is not diplayed in the column “display”when I run the select. “chit.type_interaction” contains data as you can see.

I would like that that the column DISPLAY displays TYPE_INTERACTION.

Best regards.

This post has been answered by Ananya Chatterjee-Oracle on Apr 23 2026
Jump to Answer
Comments
Post Details
Added 18 hours ago
2 comments
32 views