0

I try to concat 3 columns with separator .

Example :

enter image description here

Result = TEST, TEST2 (2020)

Someone can help me ?

Thanks!

Marmite Bomber
  • 19,886
  • 4
  • 26
  • 53

1 Answers1

1

You can just express what you want using ||:

select last_name || ' ' || first_name || ' (' || login || ')'
Gordon Linoff
  • 1,242,037
  • 58
  • 646
  • 786