Hi Yall, I want to concatenate 2 columns in my select each column in a different line.
This is an example.
Column_A has 'How to create a Service Order'
Column_b has 'Click on the below link to create an SOR'
My Query:
select Column_A+Column_b from tableA
Desired Result
How to create a Service Order
Click on the below link to create an SOR
Current Result
How to create a Service OrderClick on the below link to create an SOR.
This is an example.
Column_A has 'How to create a Service Order'
Column_b has 'Click on the below link to create an SOR'
My Query:
select Column_A+Column_b from tableA
Desired Result
How to create a Service Order
Click on the below link to create an SOR
Current Result
How to create a Service OrderClick on the below link to create an SOR.