This looks like coalesce()
:
select t.*,
coalesce(
svc_proc,
interest,
transtypekey,
connectivity_name,
vm_entreprise_program,
channels
) as interaction_details
from mytable t
coalesce()
returns the first non-null
value of the arguments list.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…