You need to gather/merge data of multiple columns in a single one across the rows.
Enter the following SQL query:
SELECT *, ( 'First name' + " " + 'Last name' ) AS 'Full name' FROM T1 |
|
If your source table columns happen to have some formatting applied which you intend to keep after the columns merge CONCAT_VIEW function is the best way to ensure that, allowing to not only perform the merge but also retain the original formatting of a column&cell, including links.
|